/* =========
   Navbar: Mobil – Logo 30 % kleiner, Hamburger kleiner, Header-Höhe 20 % reduziert
   ========= */
@media (max-width: 1023px) {
  .navbar-area {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .navbar-logo-img {
    max-height: 35px;
    width: auto;
    height: auto;
    object-fit: contain;
  }
  .navbar-burger .burger-line {
    width: 21px !important;
    height: 2px !important;
    margin: 4px 0 !important;
  }
}

/* =========
   CTA (Starte heute…)
   ========= */
.marketing-cta {
  position: relative;
  overflow: hidden;
  /* moderner “depth” look statt flacher Vollfarbe */
  background:
    radial-gradient(700px circle at 15% 20%, rgba(255,255,255,.18), transparent 60%),
    radial-gradient(900px circle at 85% 35%, rgba(0,0,0,.22), transparent 55%),
    linear-gradient(135deg, #0b57d0 0%, #6d28d9 100%);
}

.marketing-cta .cta-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 22px 70px rgba(0,0,0,0.22);
  backdrop-filter: blur(10px);
}

.marketing-cta .cta-eyebrow {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.92);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.marketing-cta .cta-bullets {
  list-style: none;
  padding: 0;
  margin: 16px 0 0 0;
  display: grid;
  gap: 10px;
}

.marketing-cta .cta-bullets li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(255,255,255,0.92);
  font-size: 14px;
  line-height: 1.5;
}

.marketing-cta .cta-bullets li::before {
  content: "✓";
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.22);
}

.marketing-cta .cta-note {
  margin-top: 10px;
  color: rgba(255,255,255,0.78);
  font-size: 13px;
}

/* =========
   FAQ
   ========= */
.marketing-faq {
  /* etwas “wertiger” als flaches Magnolia */
  background:
    radial-gradient(900px circle at 15% 20%, rgba(99,102,241,.12), transparent 60%),
    radial-gradient(900px circle at 85% 45%, rgba(168,85,247,.10), transparent 55%),
    #f5f3ff;
}

.marketing-faq details {
  background: #fff;
  border: 1px solid rgba(15,23,42,0.10);
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 10px 30px rgba(15,23,42,0.06);
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}

.marketing-faq details:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 38px rgba(15,23,42,0.08);
}

.marketing-faq details[open] {
  border-color: rgba(99,102,241,0.35);
  box-shadow: 0 20px 48px rgba(15,23,42,0.10);
}

.marketing-faq summary {
  cursor: pointer;
  user-select: none;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

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

.marketing-faq .faq-q {
  font-weight: 600;
  font-size: 16px;
  color: #0f172a;
}

.marketing-faq .faq-toggle {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 999px;
  background: rgba(99,102,241,0.10);
  border: 1px solid rgba(99,102,241,0.20);
  position: relative;
}

.marketing-faq .faq-toggle::before,
.marketing-faq .faq-toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  background: rgba(15,23,42,0.70);
  transform: translate(-50%, -50%);
  border-radius: 2px;
}

.marketing-faq .faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.marketing-faq details[open] .faq-toggle::after {
  /* plus -> minus */
  opacity: 0;
}

.marketing-faq .faq-a {
  margin-top: 12px;
  color: rgba(15,23,42,0.78);
  font-size: 14px;
  line-height: 1.7;
}

/* === BauCockpit Footer Redesign (mobile-first) === */
.bc-footer {
  padding: 2rem 0 1.5rem;
}

@media (min-width: 768px) {
  .bc-footer {
    padding: 3rem 0 2rem;
  }
}

@media (min-width: 1024px) {
  .bc-footer {
    padding: 4rem 0 2.5rem;
  }
}

.bc-footer-top {
  text-align: center;
  margin-bottom: 0;
}

@media (min-width: 1024px) {
  .bc-footer-top {
    text-align: left;
  }
}

.bc-footer-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.bc-footer-logo-link img {
  display: inline-block;
  height: auto;
  max-height: 40px;
  width: auto;
}

.bc-footer-divider {
  margin: 1.25rem 0 1.5rem;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

@media (min-width: 768px) {
  .bc-footer-divider {
    margin: 1.5rem 0 2rem;
  }
}

.bc-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .bc-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.5rem;
  }
}

@media (min-width: 1024px) {
  .bc-footer-grid {
    grid-template-columns: 1fr 1fr auto;
    gap: 2rem 2rem;
    align-items: start;
  }
}

.bc-footer-links-col {
  margin: 0;
  padding: 0;
}

.bc-footer-link-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.bc-footer-link-list li {
  margin: 0;
}

.bc-footer-link-list a {
  display: inline-block;
  padding: 0.35rem 0;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  min-height: 2.25rem;
  line-height: 1.4;
  border-radius: 4px;
  transition: color 160ms ease, background-color 160ms ease;
}

.bc-footer-link-list a:hover {
  color: rgba(255, 255, 255, 0.95);
}

.bc-footer-link-list a:focus-visible {
  outline: 2px solid rgba(77, 141, 255, 0.9);
  outline-offset: 2px;
}

.bc-footer-badges {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 1rem;
  min-height: 0;
}

.bc-footer-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  background-color: white;
  border: solid 1px white;
  border-radius: 10px;
  box-shadow: none;
  min-width: 80px;
  min-height: 56px;
  text-decoration: none;
  transition: opacity 160ms ease;
}

.bc-footer-badge:hover {
  background-color: white;
  border: solid 1px white;
  opacity: 0.9;
}

.bc-footer-badge:focus-visible {
  outline: 2px solid rgba(77, 141, 255, 0.9);
  outline-offset: 2px;
}

.bc-footer-badge img {
  display: block;
  max-height: 44px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.bc-footer-bottom {
  text-align: center;
  padding-top: 0.5rem;
}

.bc-footer-bottom p {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
}

@media (prefers-reduced-motion: reduce) {
  .bc-footer-link-list a,
  .bc-footer-badge {
    transition: none;
  }
}

/* =========
   Privacy checkbox spacing
   ========= */
.bc-privacy-label {
  display: flex;
  align-items: center;
  gap: 10px;
}

