@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --primary: #0d2a4a;
  --primary-strong: #0b2240;
  --accent: #16406b;
   --alert: #e53935;
  --gray-light: #f3f5f7;
  --gray-mid: #d7dde4;
  --text: #1b1f27;
  --text-light: #5a6270;
  --shadow: 0 12px 32px rgba(13, 42, 74, 0.08);
  --radius: 14px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: #f7f9fb;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

html {
  scroll-behavior: smooth;
}

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

a:hover {
  color: var(--accent);
}

.container {
  width: min(1320px, 94vw);
  margin: 0 auto;
}

.site-header .container {
  width: min(1680px, 98vw);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(13, 42, 74, 0.92);
  color: #fff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-weight: 700;
  color: #111;
}

.logo {
  height: 60px;
  width: 60px;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 6px 12px rgba(13, 42, 74, 0.18));
  background: transparent;
}

.brand-name {
  font-size: 1.05rem;
  letter-spacing: 0.3px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
  font-size: 0.95rem;
  flex-wrap: wrap;
}

.main-nav a {
  color: #d8e4f5;
  padding: 6px 8px;
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease;
}

.main-nav a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.main-nav .hotline {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  margin-left: 4px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffffff, #f2f5fb);
  border: 1px solid rgba(210, 223, 239, 0.95);
  color: var(--primary-strong);
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(6, 16, 32, 0.24);
}

.main-nav .hotline span {
  position: relative;
  z-index: 1;
}

.main-nav .hotline::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 0%, rgba(22, 64, 107, 0.12), transparent 55%);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.main-nav .hotline:hover {
  background: linear-gradient(135deg, #ffffff, #e7f0ff);
  box-shadow: 0 18px 40px rgba(6, 16, 32, 0.28);
  transform: translateY(-1px);
}

.main-nav .hotline:hover::before {
  opacity: 1;
}

.hotline-icon {
  position: relative;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-size: 0.9rem;
  box-shadow: 0 10px 22px rgba(6, 16, 32, 0.42);
}

.hotline-icon::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.8);
  opacity: 0;
  animation: hotline-pulse 1.9s ease-out infinite;
}

.hotline-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1px;
}

.hotline-label {
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--alert);
  line-height: 1.1;
}

.hotline-number {
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--primary-strong);
  line-height: 1.1;
}

.hotline-em {
  color: var(--alert);
  font-weight: 800;
}

.hotline-meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #30415f;
  margin-top: 2px;
}

.whatsapp-icon {
  width: 16px;
  height: 16px;
  display: inline-block;
}

.whatsapp-icon-inline {
  vertical-align: text-bottom;
  margin-right: 6px;
}

.hotline-meta .whatsapp-icon {
  width: 14px;
  height: 14px;
}

@keyframes hotline-pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.18);
    opacity: 0;
  }
  100% {
    transform: scale(1.18);
    opacity: 0;
  }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
}

.hero {
  background: linear-gradient(120deg, #f7faff 10%, #e8f1ff 40%, #f7faff 100%);
  padding: 110px 0 80px;
  scroll-margin-top: 90px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(13, 42, 74, 0.07), transparent 35%),
              radial-gradient(circle at 80% 10%, rgba(22, 64, 107, 0.1), transparent 40%),
              linear-gradient(135deg, rgba(13, 42, 74, 0.04), transparent 45%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  z-index: 1;
}

.hero-text h1 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin: 10px 0 14px;
  color: var(--primary-strong);
}

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

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

.hero-visual {
  display: none;
  text-align: center;
}

.hero-photo {
  width: 100%;
  max-width: 520px;
  display: block;
  border-radius: calc(var(--radius) + 6px);
  box-shadow: 0 22px 58px rgba(13, 42, 74, 0.2);
  object-fit: cover;
}

@media (min-width: 901px) {
  .hero-content {
    grid-template-columns: 1.05fr 0.95fr;
  }
  .hero-visual {
    display: block;
  }
  .contact-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(13, 42, 74, 0.06);
  color: var(--accent);
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin: 0;
}

.section {
  padding: 80px 0;
  scroll-margin-top: 90px;
}

.section-alt {
  background: var(--gray-light);
}

@media (max-width: 600px) {
  .section {
    padding: 60px 0;
  }

  #einsatz-map {
    height: 240px;
  }
}

.section-head h2 {
  margin: 8px 0 6px;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  color: var(--primary-strong);
}

.section-head {
  margin-bottom: 32px;
}

.grid {
  display: grid;
  gap: 18px;
}

.services {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.references {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  border: 1px solid #e5e9ef;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(13, 42, 74, 0.12);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  padding: 1px;
  background: linear-gradient(135deg, rgba(13, 42, 74, 0.18), rgba(22, 64, 107, 0.08));
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  pointer-events: none;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.card p {
  margin: 0;
  color: var(--text-light);
}

.card-link {
  display: inline-flex;
  margin-top: 12px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  gap: 6px;
  align-items: center;
}

.card-link::after {
  content: "→";
  font-size: 0.95em;
}

.card-link:hover {
  color: var(--accent);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 12px;
  background: #e8edf3;
}

.section-career .card img {
  transition: transform 0.35s ease-out;
}

.section-career .card:hover img {
  transform: scale(1.04);
}

.feature-img,
.about-img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.media-block {
  margin-top: 22px;
}

.content-with-image {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: center;
}

.content-stack {
  gap: 28px;
}

.content-text {
  display: grid;
  gap: 12px;
}

.content-img {
  justify-self: center;
  width: 100%;
}

#einsatzgebiete .einsatzgebiet-layout {
  margin-top: 28px;
}

#einsatzgebiete .einsatzgebiet-layout .content-img {
  max-width: 520px;
}

#einsatzgebiete .einsatzgebiet-ruhr {
  margin-top: 32px;
}

#einsatzgebiete .einsatzgebiet-hint {
  margin-top: 26px;
}

#einsatz-map {
  width: 100%;
  /* Feste Mindesthöhe als Fallback für Browser ohne clamp-Unterstützung */
  height: 320px;
  height: clamp(260px, 45vw, 460px);
  z-index: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.einsatz-map-fallback {
  display: none;
}

.card .card-body {
  padding: 2px 2px 0;
}

.about {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.about-visual {
  justify-self: center;
}

.facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

.fact-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 18px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid #e5e9ef;
}

.fact-number {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
}

.fact-label {
  color: var(--text-light);
  font-weight: 600;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.cert-list {
  padding-left: 18px;
  color: var(--text-light);
  line-height: 1.7;
}

.cert-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: center;
}

.cert-image {
  justify-self: center;
}

.cert-image img {
  max-width: 420px;
  width: 100%;
}

.card-grid-career {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.section-career .card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.section-career .card p:last-of-type {
  margin-bottom: 12px;
}

.section-career .card ul {
  padding-left: 18px;
  margin: 8px 0 12px;
  color: var(--text-light);
}

.section-career .card .btn {
  margin-top: auto;
  margin-bottom: 10px;
  align-self: flex-start;
}

.career-hint {
  margin-top: 28px;
  padding: 14px 16px;
  border-radius: 16px;
  background: radial-gradient(circle at 0% 0%, rgba(22, 64, 107, 0.12), transparent 55%),
              linear-gradient(135deg, rgba(13, 42, 74, 0.95), rgba(13, 42, 74, 0.86));
  color: #f5f7fc;
  text-align: center;
  font-weight: 600;
  font-size: 0.98rem;
  box-shadow: 0 20px 40px rgba(2, 12, 28, 0.32);
  border: 1px solid rgba(197, 212, 235, 0.38);
  position: relative;
  overflow: hidden;
}

.career-hint::before {
  content: "";
  position: absolute;
  inset: -30%;
  background:
    radial-gradient(circle at 0% 120%, rgba(32, 201, 151, 0.28), transparent 50%),
    radial-gradient(circle at 110% 0%, rgba(80, 140, 255, 0.35), transparent 52%);
  opacity: 0.9;
  pointer-events: none;
}

.career-hint span,
.career-hint a {
  position: relative;
  z-index: 1;
}

.career-hint a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.career-hint a:hover {
  color: #dbe7ff;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 10px;
}

.faq-item h3 {
  margin-top: 0;
  margin-bottom: 8px;
}

.section-faq {
  position: relative;
  overflow: hidden;
  padding-top: 24px;
  padding-bottom: 70px;
}

.section-faq::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(22, 64, 107, 0.12), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(18, 184, 134, 0.12), transparent 55%);
  opacity: 0.8;
  pointer-events: none;
}

.section-faq .container {
  position: relative;
  z-index: 1;
}

.section-faq .section-head {
  margin-bottom: 12px;
}

.section-faq .section-head h2 {
  background: linear-gradient(135deg, #0b2240, #1f7ae0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-faq .content-with-image {
  margin-top: 4px;
  margin-bottom: 12px;
  background: #ffffff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid #e5e9ef;
  padding: 18px 18px 10px;
}

.section-faq .feature-img {
  max-height: 260px;
  object-fit: cover;
}

.faq-item {
  padding: 0;
  overflow: hidden;
  background: radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.95), rgba(233, 242, 255, 0.96));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: calc(var(--radius) + 2px);
  box-shadow: 0 18px 40px rgba(2, 12, 28, 0.26);
  border: 1px solid rgba(205, 219, 239, 0.9);
}

.faq-question {
  width: 100%;
  padding: 16px 18px 14px;
  border: 0;
  background: transparent;
  color: var(--primary-strong);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font: inherit;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.faq-question span:first-child {
  text-align: left;
  font-weight: 700;
}

.faq-icon {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid rgba(181, 195, 219, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--primary-strong);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 20px rgba(13, 42, 74, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.faq-answer {
  display: none;
  padding: 0 18px 16px;
}

.faq-answer p {
  margin: 0;
  color: var(--text-light);
}

.page-hero .section-head h1,
.section-faq .section-head h1 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  background: linear-gradient(135deg, #1f7ae0, #12b886);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.faq-subtitle {
  margin-top: 6px;
  max-width: 720px;
  color: var(--text-light);
}

.faq-question-title {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.faq-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary-strong);
  border: 1px solid rgba(180, 194, 220, 0.9);
}

.faq-label-region {
  border-color: rgba(31, 122, 224, 0.9);
}

.faq-label-clients {
  border-color: rgba(18, 184, 134, 0.9);
}

.faq-label-scope {
  border-color: rgba(255, 193, 7, 0.9);
}

.faq-label-process {
  border-color: rgba(139, 92, 246, 0.9);
}

.faq-label-emergency {
  border-color: rgba(229, 57, 53, 0.9);
}

.faq-label-contact {
  border-color: rgba(0, 172, 193, 0.9);
}

.faq-label-timing {
  border-color: rgba(120, 144, 156, 0.9);
}

.faq-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 120%, rgba(31, 122, 224, 0.15), transparent 55%),
    radial-gradient(circle at 110% 0%, rgba(18, 184, 134, 0.2), transparent 50%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.faq-item.is-open::before,
.faq-item:hover::before {
  opacity: 1;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.faq-item.is-open .faq-icon {
  background: linear-gradient(135deg, #1f7ae0, #12b886);
  color: #fff;
  box-shadow: 0 12px 26px rgba(9, 30, 66, 0.45);
}

.career-hint--faq-link {
  margin-top: 26px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.section-services-details {
  scroll-margin-top: 90px;
}

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

.service-detail {
  background: #fff;
  border-radius: var(--radius);
  padding: 20px 20px 8px;
  box-shadow: var(--shadow);
  border: 1px solid #e5e9ef;
  scroll-margin-top: 100px;
}

.service-detail h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--primary-strong);
}

.service-detail ul {
  margin-top: 8px;
  margin-bottom: 12px;
  padding-left: 18px;
  color: var(--text-light);
}

.service-gallery {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.service-gallery-track {
  position: relative;
  flex: 0 1 560px;
  max-width: 100%;
  height: clamp(220px, 40vw, 420px);
  border-radius: 12px;
  overflow: hidden;
  background: #e8edf3;
}

.service-gallery-track img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  transform: translateX(24px) scale(0.96) rotateY(6deg);
  filter: saturate(0.9);
  transition: opacity 0.4s ease, transform 0.45s cubic-bezier(0.19, 1, 0.22, 1), filter 0.4s ease;
}

.service-gallery-track img.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1) rotateY(0deg);
  filter: saturate(1.05);
}

.gallery-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 6px 16px rgba(13, 42, 74, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--primary-strong);
  font-weight: 800;
  padding: 0;
}

.gallery-arrow.prev,
.gallery-arrow.next {
  flex: 0 0 auto;
}

.cert-placeholder {
  background: #e2e7ee;
  border: 1px dashed #bfc8d6;
  color: var(--primary-strong);
  border-radius: var(--radius);
  padding: 18px;
  text-align: center;
  font-weight: 600;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.contact-details h3 {
  margin-top: 0;
}

.contact-details p {
  color: var(--text-light);
}

.contact-form {
  background: #fff;
  padding: 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid #e5e9ef;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

label {
  font-weight: 600;
  color: var(--primary-strong);
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #d8dde5;
  font: inherit;
  background: #fdfdfd;
  transition: border 0.15s ease, box-shadow 0.15s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(13, 42, 74, 0.14);
}

textarea {
  resize: vertical;
}

.checkbox-row {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-row input {
  margin-top: 3px;
  width: 18px;
  height: 18px;
}

.form-note {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 4px 0 12px;
}

.map-section {
  margin-top: 28px;
}

.map-placeholder {
  border-radius: var(--radius);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e1e6ed;
  border: 1px dashed #b8c2d0;
  position: relative;
  overflow: hidden;
}

.map-frame {
  border-radius: var(--radius);
  min-height: 320px;
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

@media (max-width: 600px) {
  .gallery-arrow {
    width: 24px;
    height: 24px;
  }
}

.map-placeholder button {
  background: #fff;
  border: 1px solid var(--primary);
  color: var(--primary);
}

.footer {
  background: var(--primary-strong);
  color: #d8e4f5;
  padding: 28px 0 12px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer a {
  color: #fff;
  font-weight: 600;
}

.footer-links {
  display: flex;
  gap: 12px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-social-label {
  font-size: 0.86rem;
  color: #c3d4f0;
  font-weight: 500;
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-social-link {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(2, 12, 28, 0.5);
  border: 1px solid rgba(238, 245, 255, 0.85);
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.2s ease;
  background: #0b2240;
}

.footer-social-link img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.footer-social-link--tiktok {
  background: #000;
}

.footer-social-link--facebook {
  background: #1877f2;
}

.footer-social-link--instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

.footer-social-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(2, 12, 28, 0.7);
}

.legal-note {
  margin-top: 16px;
  text-align: center;
  font-size: 0.9rem;
  color: #bcd0ea;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease, color 0.2s ease;
  text-decoration: none;
}

.btn.primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 24px rgba(13, 42, 74, 0.2);
}

.btn.hotline-btn {
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  text-align: left;
  line-height: 1.2;
  white-space: normal;
}

.btn.hotline-btn .hotline-number {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-strong);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(13, 42, 74, 0.28);
  background: var(--accent);
}

.btn.ghost {
  background: #fff;
  color: var(--primary);
  border: 1px solid #c8d3e0;
}

.btn.ghost:hover {
  background: #eef2f7;
  transform: translateY(-1px);
}

.btn.whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 10px 24px rgba(18, 140, 126, 0.35);
}

.btn.whatsapp:hover {
  background: linear-gradient(135deg, #21c65c, #0f7b6d);
  box-shadow: 0 14px 30px rgba(18, 140, 126, 0.45);
  transform: translateY(-1px);
}

.btn.full {
  width: 100%;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reviews-summary {
  margin-top: 6px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: var(--text-light);
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: baseline;
}

.reviews-summary-rating {
  font-weight: 700;
  color: var(--primary-strong);
}

.reviews-summary-count {
  opacity: 0.9;
}

.reviews-google-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  font-weight: 600;
  font-size: 0.95rem;
}

.reviews-google-link::after {
  content: "↗";
  font-size: 0.85em;
}

.reviews-disclaimer {
  margin-top: 4px;
  font-size: 0.82rem;
  color: var(--text-light);
  max-width: 640px;
}

.reviews-slider {
  margin-top: 22px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 12px;
}

.reviews-track {
  position: relative;
  flex: 0 1 640px;
  max-width: 100%;
  min-height: 180px;
}

.review-card {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(18px);
  transition: opacity 0.4s ease, transform 0.45s cubic-bezier(0.19, 1, 0.22, 1);
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid #e3e8f1;
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-card.is-active {
  position: relative;
  opacity: 1;
  transform: translateX(0);
}

.review-rating-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.review-stars {
  display: inline-flex;
  gap: 2px;
  color: #f9a825;
  font-size: 1.1rem;
}

.review-rating-value {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary-strong);
}

.review-text {
  font-size: 0.95rem;
  color: var(--text-light);
  margin: 4px 0 10px;
}

.review-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--text-light);
}

.review-author {
  font-weight: 600;
  color: var(--primary-strong);
}

.reviews-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 6px 16px rgba(13, 42, 74, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--primary-strong);
  font-weight: 800;
  padding: 0;
}

.reviews-arrow[disabled] {
  opacity: 0.45;
  cursor: default;
  box-shadow: none;
}

.reviews-dots {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.reviews-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  background: #c3cede;
  padding: 0;
  cursor: pointer;
}

.reviews-dot.is-active {
  background: var(--primary);
}

@media (max-width: 700px) {
  .reviews-slider {
    flex-direction: row;
    align-items: center;
  }

  .reviews-arrow {
    width: 28px;
    height: 28px;
  }

  .reviews-track {
    min-height: 220px;
  }
}

/* Futuristische Inline-Notifications für Formulare */
.notify-stack {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.notify {
  pointer-events: auto;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-width: min(360px, 92vw);
  padding: 12px 14px 12px 12px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(13, 42, 74, 0.96), rgba(19, 82, 134, 0.98)),
    radial-gradient(circle at 0% 0%, rgba(18, 184, 134, 0.45), transparent 60%);
  color: #f8fbff;
  box-shadow: 0 18px 40px rgba(2, 12, 28, 0.7);
  border: 1px solid rgba(194, 218, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 0;
  transform: translate3d(18px, -6px, 0) scale(0.97);
  transition:
    opacity 0.26s ease-out,
    transform 0.32s cubic-bezier(0.19, 1, 0.22, 1);
}

.notify.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.notify-icon {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
  background: radial-gradient(circle at 30% 0%, #ffffff, #dde8ff);
  color: var(--primary-strong);
}

.notify--success .notify-icon {
  background: radial-gradient(circle at 30% 0%, #e6fff7, #12b886);
  color: #fff;
}

.notify--error .notify-icon {
  background: radial-gradient(circle at 30% 0%, #ffe6e6, var(--alert));
  color: #fff;
}

.notify-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.notify-title {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.9;
}

.notify-text {
  font-size: 0.92rem;
  line-height: 1.5;
  opacity: 0.96;
}

.notify--success .notify-title {
  color: #e3fffa;
}

.notify--error .notify-title {
  color: #ffe3e3;
}

.notify-close {
  flex: 0 0 auto;
  margin-left: 4px;
  border-radius: 999px;
  border: 0;
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(7, 19, 38, 0.6);
  color: #e0e9ff;
  cursor: pointer;
  font-size: 1.1rem;
  padding: 0;
  box-shadow: 0 8px 18px rgba(1, 7, 18, 0.7);
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.notify-close:hover {
  background: rgba(10, 30, 60, 0.92);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(1, 7, 18, 0.85);
}

@media (max-width: 640px) {
  .notify {
    border-radius: 16px;
  }
}

/* Responsive */
@media (max-width: 1100px) {
  .hero-content {
    grid-template-columns: 1fr; 
  }

  .main-nav .hotline {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  }

  .hotline-text {
    align-items: center;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--primary-strong);
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 14px 16px;
    display: none;
  }

  .main-nav.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 96px 0 68px;
  }
}

@media (min-width: 901px) {
  .about {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
  }

  .about-visual {
    justify-self: end;
    max-width: 520px;
  }

  .feature-img {
    max-width: 640px;
  }

  .cert-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
  }

  .cert-image {
    justify-self: end;
  }

  .service-gallery-track {
    flex-basis: 640px;
  }

  .content-with-image {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 28px;
  }

  .content-img {
    justify-self: end;
    max-width: 520px;
  }
}

@media (min-width: 1101px) and (max-width: 1350px) {
  .main-nav {
    font-size: 0.9rem;
    gap: 12px;
  }

  .main-nav .hotline {
    padding: 5px 12px;
  }

  .hotline-icon {
    width: 28px;
    height: 28px;
  }
}

@media (min-width: 1200px) {
  .hero-text h1 {
    font-size: 3rem;
  }
}
