
/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: 'Source Sans 3', 'Segoe UI', sans-serif;
  color: #E0E0E0;
  background: #0A1628;
  line-height: 1.7;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5 { font-family: 'Playfair Display', Georgia, serif; color: #FFFFFF; line-height: 1.3; }
a { color: #E8A020; text-decoration: none; transition: color 0.3s; }
a:hover { color: #FFB840; }
img { max-width: 100%; height: auto; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== COLOR VARIABLES ===== */
:root {
  --primary: #0A1628;
  --primary-light: #0F2038;
  --secondary: #E8A020;
  --secondary-light: #FFB840;
  --white: #FFFFFF;
  --text: #C8CDD5;
  --text-light: #9BA3AE;
  --glass-bg: rgba(15, 32, 56, 0.6);
  --glass-border: rgba(232, 160, 32, 0.15);
  --gradient: linear-gradient(135deg, #E8A020 0%, #FFB840 100%);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(232, 160, 32, 0.1);
  transition: all 0.3s ease;
}
.navbar.scrolled {
  background: rgba(10, 22, 40, 0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo-icon {
  width: 42px;
  height: 42px;
  background: var(--gradient);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--primary);
}
.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
}
.nav-logo-text span { color: var(--secondary); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.95rem;
}
.nav-phone i { font-size: 0.85rem; }
.nav-cta {
  background: var(--gradient);
  color: var(--primary) !important;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  transition: transform 0.3s, box-shadow 0.3s;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 160, 32, 0.35);
  color: var(--primary) !important;
}
.nav-cta::after { display: none; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}
.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===================================================
   LIQUID GLASS HERO — Premium Upgrade
   =================================================== */

/* Font Override: Poppins for hero headings */
.liquid-glass-hero h1,
.liquid-glass-hero .hero-badge,
.liquid-glass-hero .hero-sub {
  font-family: 'Poppins', 'Source Sans 3', sans-serif;
}

/* Serif Italic Accent Words */
.serif-accent {
  font-family: 'Source Serif 4', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
}

/* ── Hero Base ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 0 80px;
  background: #0A1628;
  overflow: hidden;
}

/* Video Background */
.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 1;
  opacity: 0.72;
  filter: saturate(1.4) brightness(0.95);
  pointer-events: none;
  display: block !important;
  visibility: visible !important;
  max-width: 100vw;
}

/* Dark Gradient Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,22,40,0.70) 0%,
    rgba(15,32,56,0.50) 60%,
    rgba(10,22,40,0.65) 100%
  );
  z-index: 2;
  pointer-events: none;
}

/* Gold glow top-right */
.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(232,160,32,0.07) 0%, transparent 68%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

/* Gold glow bottom-left */
.hero::after {
  content: '';
  position: absolute;
  bottom: -25%;
  left: -8%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(232,160,32,0.04) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

/* Hero Content Wrapper */
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}

/* ── Liquid Glass Panel ── */
.liquid-glass-hero {
  position: relative;
  backdrop-filter: blur(25px) saturate(1.6);
  -webkit-backdrop-filter: blur(25px) saturate(1.6);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 2.5rem;
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,0.18),
    0 32px 64px rgba(0,0,0,0.35),
    0 0 0 1px rgba(255,255,255,0.06);
  padding: 3rem 3.5rem 2.5rem;
  overflow: hidden;
}

/* Gradient Border — geschliffene Glaskante */
.liquid-glass-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 2.5rem;
  padding: 1px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.40) 0%,
    rgba(255,255,255,0.08) 40%,
    transparent 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 0;
}

/* Inner shimmer line (top) */
.liquid-glass-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  z-index: 1;
  pointer-events: none;
}

/* All direct children above the glass pseudo-elements */
.liquid-glass-hero > * {
  position: relative;
  z-index: 2;
}

/* H1 in glass panel */
.liquid-glass-hero h1 {
  font-size: clamp(1.9rem, 4.2vw, 3.3rem);
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.18;
  color: #fff;
}

/* ── Glass CTA Buttons ── */
.btn-glass-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gradient);
  color: var(--primary);
  padding: 16px 32px;
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 6px 20px rgba(232,160,32,0.25);
}
.btn-glass-primary:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 14px 36px rgba(232,160,32,0.4);
  color: var(--primary);
}

.btn-glass-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.07);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid rgba(255,255,255,0.18);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn-glass-secondary:hover {
  transform: scale(1.05) translateY(-2px);
  background: rgba(232,160,32,0.12);
  border-color: rgba(232,160,32,0.45);
  color: var(--white);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 160, 32, 0.1);
  border: 1px solid rgba(232, 160, 32, 0.25);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--secondary);
  margin-bottom: 28px;
  font-weight: 500;
}
.hero-badge i { font-size: 0.7rem; }
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.15;
}
.hero h1 span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 36px;
  max-width: 560px;
  line-height: 1.8;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gradient);
  color: var(--primary);
  padding: 16px 32px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(232, 160, 32, 0.3);
  color: var(--primary);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  padding: 16px 32px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.3s;
}
.btn-secondary:hover {
  border-color: var(--secondary);
  background: rgba(232, 160, 32, 0.08);
  color: var(--white);
}
.hero-trust {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  text-align: center;
}
.trust-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--secondary);
  display: block;
}
.trust-label {
  font-size: 0.8rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== SECTIONS GENERAL ===== */
section { padding: 100px 0; }
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--secondary);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.section-label::before, .section-label::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--secondary);
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 16px;
}
.section-subtitle {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== ABOUT ===== */
.about { background: var(--primary-light); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(232,160,32,0.1), rgba(15,32,56,0.8));
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-image-placeholder {
  font-size: 4rem;
  color: var(--secondary);
  opacity: 0.3;
}
.about-text h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
  color: var(--secondary);
}
.about-text p {
  color: var(--text);
  margin-bottom: 16px;
  font-size: 1rem;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}
.about-stat {
  text-align: center;
  padding: 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}
.about-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--secondary);
}
.about-stat-label {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 4px;
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 36px 28px;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  transition: transform 0.4s, box-shadow 0.4s, border-color 0.4s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform 0.4s;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  border-color: rgba(232, 160, 32, 0.3);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(232, 160, 32, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
  color: var(--secondary);
  transition: background 0.3s;
}
.service-card:hover .service-icon {
  background: rgba(232, 160, 32, 0.2);
}
.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
}
.service-card p {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ===== ZIELGRUPPEN ===== */
.zielgruppen { background: var(--primary-light); }
.zg-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.zg-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 40px 32px;
  backdrop-filter: blur(10px);
  transition: all 0.4s;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.zg-card:hover {
  border-color: rgba(232, 160, 32, 0.3);
  transform: translateY(-4px);
}
.zg-icon {
  min-width: 60px;
  height: 60px;
  background: rgba(232, 160, 32, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--secondary);
}
.zg-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
}
.zg-card p {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.65;
}
.zg-card ul {
  margin-top: 10px;
}
.zg-card ul li {
  color: var(--text);
  font-size: 0.88rem;
  padding: 3px 0;
  padding-left: 18px;
  position: relative;
}
.zg-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: 700;
}

/* ===== USPs ===== */
.usps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.usp-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: all 0.4s;
}
.usp-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 160, 32, 0.3);
}
.usp-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: rgba(232, 160, 32, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--secondary);
}
.usp-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
}
.usp-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 6px;
}
.usp-card p {
  color: var(--text-light);
  font-size: 0.88rem;
}

/* ===== PAKETE ===== */
.pakete { background: var(--primary-light); }
.pakete-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}
.paket-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 40px 28px;
  backdrop-filter: blur(10px);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.4s;
}
.paket-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 160, 32, 0.3);
}
.paket-card.featured {
  border-color: var(--secondary);
  transform: scale(1.03);
}
.paket-card.featured:hover { transform: scale(1.03) translateY(-6px); }
.paket-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: var(--primary);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}
.paket-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  text-align: center;
  margin-bottom: 8px;
  margin-top: 8px;
}
.paket-desc {
  text-align: center;
  color: var(--text-light);
  font-size: 0.88rem;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.paket-features {
  flex: 1;
  margin-bottom: 28px;
}
.paket-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text);
}
.paket-features li i {
  color: var(--secondary);
  margin-top: 4px;
  min-width: 16px;
}
.paket-features li.disabled {
  color: var(--text-light);
  opacity: 0.4;
}
.paket-features li.disabled i {
  color: var(--text-light);
}
.paket-cta {
  text-align: center;
}
.paket-cta a {
  display: block;
  padding: 14px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s;
}
.paket-cta-primary {
  background: var(--gradient);
  color: var(--primary) !important;
}
.paket-cta-primary:hover {
  box-shadow: 0 6px 20px rgba(232, 160, 32, 0.35);
}
.paket-cta-secondary {
  border: 1px solid rgba(232, 160, 32, 0.3);
  color: var(--secondary) !important;
}
.paket-cta-secondary:hover {
  background: rgba(232, 160, 32, 0.08);
}

/* ===== EINZUGSGEBIET ===== */
.bezirke-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.bezirk-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  transition: all 0.3s;
  font-size: 0.92rem;
  color: var(--text);
}
.bezirk-item:hover {
  border-color: rgba(232, 160, 32, 0.3);
  background: rgba(232, 160, 32, 0.05);
}
.bezirk-item i {
  color: var(--secondary);
  font-size: 0.85rem;
}

/* ===== VERTRAUEN ===== */
.vertrauen { background: var(--primary-light); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}
.testimonial-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 20px;
  padding: 32px;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.10);
}
.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
}
.testimonial-stars svg { flex-shrink: 0; }
.testimonial-text {
  color: rgba(255,255,255,0.88);
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1rem;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 24px;
  line-height: 1.8;
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 18px;
  margin-top: auto;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212,175,55,0.25), rgba(232,160,32,0.15));
  border: 1px solid rgba(212,175,55,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D4AF37;
  font-weight: 700;
  font-size: 0.95rem;
  font-family: 'Poppins', sans-serif;
}
.testimonial-name { font-weight: 600; color: var(--white); font-size: 0.9rem; font-family: 'Poppins', sans-serif; }
.testimonial-role { color: rgba(255,255,255,0.5); font-size: 0.78rem; margin-top: 2px; }

/* ── Hero Review Badge ── */
.hero-review-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 1.5rem;
  padding: 0.5rem 1.1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.review-badge-stars { display: flex; gap: 3px; align-items: center; }
.review-badge-text {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  font-family: 'Poppins', sans-serif;
  white-space: nowrap;
}
.review-badge-text strong { color: #D4AF37; }
.zertifikate {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.zertifikat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
  font-size: 0.88rem;
}
.zertifikat-item i {
  color: var(--secondary);
  font-size: 1.2rem;
}

/* ===== KONTAKTFORMULAR ===== */
.kontakt-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start;
}
.kontakt-info h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
}
.kontakt-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}
.kontakt-detail-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(232, 160, 32, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
}
.kontakt-detail-text strong {
  display: block;
  color: var(--white);
  margin-bottom: 2px;
  font-size: 0.9rem;
}
.kontakt-detail-text span, .kontakt-detail-text a {
  color: var(--text);
  font-size: 0.9rem;
}
.form-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 40px;
  backdrop-filter: blur(15px);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: var(--white);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.92rem;
  transition: border-color 0.3s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--secondary);
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23E8A020' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-group textarea { resize: vertical; min-height: 100px; }
.checkbox-group {
  margin-bottom: 18px;
}
.checkbox-group legend {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}
.checkbox-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.checkbox-option {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text);
  cursor: pointer;
}
.checkbox-option input[type="checkbox"] {
  accent-color: var(--secondary);
  width: 16px;
  height: 16px;
}
.datenschutz-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
}
.datenschutz-check input {
  accent-color: var(--secondary);
  width: 16px;
  height: 16px;
  margin-top: 3px;
}
.datenschutz-check label {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.5;
}
.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--gradient);
  color: var(--primary);
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  font-family: 'Source Sans 3', sans-serif;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232, 160, 32, 0.35);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, rgba(232,160,32,0.12), rgba(232,160,32,0.04));
  border-top: 1px solid rgba(232,160,32,0.15);
  border-bottom: 1px solid rgba(232,160,32,0.15);
  padding: 60px 0;
  text-align: center;
}
.cta-banner h2 { font-size: 1.8rem; margin-bottom: 12px; }
.cta-banner p { color: var(--text); margin-bottom: 28px; font-size: 1.05rem; }

/* ===== FOOTER ===== */
.footer {
  background: #060E1A;
  padding: 60px 0 0;
  border-top: 1px solid rgba(232, 160, 32, 0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p { color: var(--text-light); font-size: 0.88rem; margin-bottom: 20px; }
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: all 0.3s;
}
.footer-social a:hover {
  background: rgba(232, 160, 32, 0.15);
  border-color: var(--secondary);
  color: var(--secondary);
}
.footer-col h4 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: var(--text-light);
  font-size: 0.88rem;
  transition: color 0.3s;
}
.footer-col ul li a:hover { color: var(--secondary); }
.footer-col ul li i {
  width: 18px;
  color: var(--secondary);
  margin-right: 6px;
  font-size: 0.8rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p, .footer-bottom a {
  color: var(--text-light);
  font-size: 0.8rem;
}
.footer-legal {
  display: flex;
  gap: 20px;
}

/* ===== BEWERTUNGS-CTA BAR ===== */
.review-cta-bar {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  margin-bottom: 8px;
}
.review-cta-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}
.review-stars-row {
  font-size: 1.2rem;
  letter-spacing: 2px;
  flex-shrink: 0;
}
.review-cta-text {
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  line-height: 1.5;
  flex: 1;
  min-width: 200px;
}
.review-cta-text strong {
  color: #fff;
}
.review-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  color: #1a1a2e;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 9px 18px;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(251,191,36,0.3);
}
.review-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(251,191,36,0.45);
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  animation: pulse 2s infinite;
  transition: transform 0.3s;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  color: white;
  animation: none;
}
.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  color: #333;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid, .usps-grid, .testimonials-grid, .pakete-grid { grid-template-columns: repeat(2, 1fr); }
  .bezirke-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 40px; }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 22, 40, 0.98);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    border-bottom: 1px solid rgba(232,160,32,0.1);
  }
  .nav-links.active { display: flex; }
  .hamburger { display: flex; }
  .nav-phone.desktop-only { display: none; }
  .hero { padding: 100px 0 60px; min-height: auto; overflow: hidden; }
  .hero h1 { font-size: 2rem; }
  .hero-video-bg { object-position: center center; max-width: 100vw; }
  .hero::before, .hero::after { display: none; }
  .hero-content { max-width: calc(100vw - 32px) !important; width: calc(100vw - 32px) !important; padding: 0; margin: 0 auto; box-sizing: border-box; }
  .liquid-glass-hero { padding: 1.5rem 1.2rem 1.5rem; border-radius: 1.2rem; max-width: 100% !important; width: 100% !important; box-sizing: border-box; word-wrap: break-word; overflow-wrap: break-word; }
  .liquid-glass-hero h1 { font-size: clamp(1.4rem, 6vw, 1.8rem); line-height: 1.22; }
  .liquid-glass-hero::before { border-radius: 1.2rem; }
  .hero-sub { font-size: 0.95rem; }
  .hero-badge { font-size: 0.72rem; padding: 5px 12px; }
  .hero-ctas .btn-glass-primary, .hero-ctas .btn-glass-secondary { font-size: 0.9rem; padding: 12px 16px; }
  .hero-trust { gap: 12px; }
  .hero-trust-item { font-size: 0.8rem; }
  .hero-review-badge { font-size: 0.65rem; padding: 0.35rem 0.6rem; gap: 4px; flex-wrap: wrap; justify-content: center; max-width: 100%; box-sizing: border-box; }
  .review-badge-stars svg, .review-badge-stars i { font-size: 0.6rem; width: 12px; height: 12px; }
  .review-badge-text { font-size: 0.65rem; text-align: center; }
  .hero-trust { gap: 20px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image { display: none; }
  .services-grid, .usps-grid, .pakete-grid { grid-template-columns: 1fr; }
  .zg-grid { grid-template-columns: 1fr; }
  .bezirke-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .kontakt-wrapper { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn-primary, .hero-ctas .btn-secondary { text-align: center; justify-content: center; }
  .btn-glass-primary, .btn-glass-secondary { text-align: center; justify-content: center; }
  .zertifikate { gap: 20px; }
  section { padding: 60px 0; }
  .paket-card.featured { transform: none; }
  .paket-card.featured:hover { transform: translateY(-6px); }
  .checkbox-options { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}


/* ===== TRUST BAR ===== */
.trust-bar {
  background: linear-gradient(135deg, #E8A020 0%, #FFB840 100%);
  padding: 9px 0;
  position: sticky;
  top: 0;
  z-index: 1001;
}
.trust-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #0A1628;
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
}
.trust-bar-item i { font-size: 0.75rem; }
.trust-bar-sep { color: rgba(10,22,40,0.3); }
@media (max-width: 640px) {
  .trust-bar-sep { display: none; }
  .trust-bar-inner { gap: 14px; }
  .trust-bar-item { font-size: 0.75rem; }
}

/* ===== NAV DROPDOWN ===== */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: default;
}
.nav-dropdown-toggle .dd-arrow {
  font-size: 0.6rem;
  transition: transform 0.3s;
}
.nav-dropdown:hover .dd-arrow { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10, 22, 40, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(232, 160, 32, 0.25);
  border-radius: 12px;
  padding: 8px 0;
  min-width: 240px;
  display: none;
  z-index: 500;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: #C8CDD5;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s;
  border-radius: 0;
}
.nav-dropdown-menu a:hover {
  color: #FFFFFF;
  background: rgba(232, 160, 32, 0.1);
  padding-left: 26px;
}
.nav-dropdown-menu a::after { display: none; }
.nav-dropdown-divider {
  height: 1px;
  background: rgba(232, 160, 32, 0.12);
  margin: 6px 14px;
}

/* ===== FAQ ===== */
.faq { background: #0F2038; padding: 100px 0; }
.faq-grid {
  max-width: 820px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: rgba(15, 32, 56, 0.8);
  border: 1px solid rgba(232, 160, 32, 0.15);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item.open { border-color: rgba(232, 160, 32, 0.45); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  gap: 16px;
  user-select: none;
}
.faq-question h3 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0;
  line-height: 1.4;
}
.faq-question .faq-icon {
  color: #E8A020;
  font-size: 0.85rem;
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding: 0 24px 22px;
  color: #C8CDD5;
  font-size: 0.95rem;
  line-height: 1.75;
  border-top: 1px solid rgba(232, 160, 32, 0.08);
}
.faq-answer-inner a { color: #E8A020; }
.faq-item.open .faq-answer { max-height: 400px; }

/* ===== SUBPAGE HERO ===== */
.subhero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, #0A1628 0%, #0F2038 60%, #0A1628 100%);
  position: relative;
  overflow: hidden;
}
.subhero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232,160,32,0.07) 0%, transparent 70%);
  border-radius: 50%;
}
.subhero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 0.82rem;
  color: #9BA3AE;
}
.subhero-breadcrumb a { color: #E8A020; }
.subhero-breadcrumb i { font-size: 0.6rem; }
.subhero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}
.subhero h1 span {
  background: linear-gradient(135deg, #E8A020 0%, #FFB840 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.subhero-lead {
  font-size: 1.1rem;
  color: #C8CDD5;
  max-width: 620px;
  line-height: 1.8;
  margin-bottom: 36px;
}
.subhero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ===== SUBPAGE CONTENT ===== */
.subpage-content { padding: 80px 0; background: #0A1628; }
.subpage-content h2 { margin-bottom: 16px; }
.subpage-content p { color: #C8CDD5; line-height: 1.8; margin-bottom: 16px; }
.subpage-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin: 40px 0;
}
.subpage-feature {
  background: rgba(15, 32, 56, 0.6);
  border: 1px solid rgba(232, 160, 32, 0.12);
  border-radius: 12px;
  padding: 24px;
  transition: border-color 0.3s, transform 0.3s;
}
.subpage-feature:hover {
  border-color: rgba(232,160,32,0.35);
  transform: translateY(-3px);
}
.subpage-feature i {
  font-size: 1.5rem;
  color: #E8A020;
  margin-bottom: 12px;
}
.subpage-feature h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}
.subpage-feature p { font-size: 0.9rem; margin: 0; }

/* ===== INLINE CTA BAND ===== */
.cta-band {
  background: linear-gradient(135deg, #E8A020 0%, #FFB840 100%);
  padding: 60px 0;
  text-align: center;
}
.cta-band h2 { color: #0A1628; margin-bottom: 8px; }
.cta-band p { color: rgba(10,22,40,0.75); margin-bottom: 28px; }
.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0A1628;
  color: #FFFFFF;
  padding: 16px 32px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.3s, box-shadow 0.3s;
}
.btn-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  color: #FFFFFF;
}

/* ===== LEISTUNGS-HUB ===== */
.leistungs-hub { padding: 100px 0; background: #0D1F3C; }
.hub-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.hub-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 16px;
  padding: 32px 24px;
  text-decoration: none;
  color: #E0E0E0;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hub-card:hover {
  transform: translateY(-6px);
  border-color: #D4AF37;
  box-shadow: 0 16px 40px rgba(212,175,55,0.15);
  color: #E0E0E0;
}
.hub-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, #D4AF37, #F0D060);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: #0A1628;
}
.hub-card h3 { font-size: 1.15rem; font-weight: 700; color: #FFFFFF; margin: 0; }
.hub-card p { font-size: 0.92rem; color: rgba(224,224,224,0.75); line-height: 1.6; flex: 1; }
.hub-link {
  font-size: 0.88rem; font-weight: 600;
  color: #D4AF37;
  display: flex; align-items: center; gap: 6px;
  margin-top: 4px;
}
.hub-link i { font-size: 0.75rem; transition: transform 0.2s; }
.hub-card:hover .hub-link i { transform: translateX(4px); }

@media (max-width: 1024px) { .hub-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .hub-grid { grid-template-columns: 1fr; } }

/* ===== LOCAL SEO FOOTER ===== */
.footer-einsatzgebiete {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  margin-top: 16px;
  margin-bottom: 0;
}
.footer-einsatzgebiete p {
  font-size: 0.82rem;
  color: rgba(224,224,224,0.5);
  line-height: 1.8;
  text-align: center;
}
.footer-einsatzgebiete strong { color: rgba(224,224,224,0.7); }
.footer-einsatzgebiete .fa-location-dot { color: #D4AF37; margin-right: 4px; }

/* ===== STICKY MOBILE CTA ===== */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  padding: 12px 16px;
  background: linear-gradient(to top, rgba(10,22,40,0.98) 0%, rgba(10,22,40,0.0) 100%);
}
.sticky-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #D4AF37, #F0D060);
  color: #0A1628;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(212,175,55,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.sticky-cta-btn:hover { transform: translateY(-2px); color: #0A1628; }
@media (max-width: 768px) {
  .sticky-mobile-cta { display: block; }
  /* Extra bottom padding so content isn't hidden behind sticky CTA */
  .footer { padding-bottom: 80px; }
}

/* ── Social Proof / Referenzen ── */
.referenzen-section {
  padding: 5rem 0 4rem;
  background: linear-gradient(180deg, var(--bg-light, #f8faff) 0%, #eef2ff 100%);
}
.referenzen-header {
  text-align: center;
  margin-bottom: 3rem;
}
.stars-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(37,99,235,0.08);
  border: 1px solid rgba(37,99,235,0.2);
  border-radius: 2rem;
  padding: 0.4rem 1.2rem;
  margin-bottom: 1rem;
}
.stars { color: #f59e0b; font-size: 1.1rem; letter-spacing: 2px; }
.stars-label { font-family: 'Poppins', sans-serif; font-size: 0.85rem; font-weight: 600; color: var(--primary, #1E3A5F); }
.referenzen-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary, #1E3A5F);
  margin: 0.5rem 0;
}
.referenzen-sub {
  color: #64748b;
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
}
.referenzen-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.logo-card {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(37,99,235,0.12);
  border-radius: 1rem;
  padding: 1.5rem 2rem;
  min-width: 160px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.logo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(37,99,235,0.12);
}
.logo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}
.logo-icon { font-size: 2rem; }
.logo-name {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary, #1E3A5F);
}
.logo-city { font-size: 0.72rem; color: #94a3b8; }
.referenzen-note {
  text-align: center;
  font-size: 0.75rem;
  color: #94a3b8;
  font-style: italic;
}
@media (max-width: 640px) {
  .referenzen-logos { gap: 1rem; }
  .logo-card { min-width: 130px; padding: 1rem 1.2rem; }
  .referenzen-title { font-size: 1.5rem; }
}
