/* BassDurchblick – generated from BassDurchblickSite.dc.html design */

:root {
  --cream: #FAF4E8;
  --cream-2: #F2E8D2;
  --cream-line: #EADFC7;
  --sand: #74654A;
  --sand-dark: #5B4F3C;
  --navy: #1B2440;
  --navy-deep: #12192b;
  --navy-stripe: #253058;
  --orange: #F26F21;
  --red: #E94F37;
  --red-dark: #d33f28;
  --teal: #136E78;
  --amber: #F4A413;
  --peach: #F4C98A;
  --hero-muted: #C3CDD8;
  --footer-text: #B7C1CE;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Mulish', sans-serif;
  background: var(--cream);
  color: var(--navy);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}
img { max-width: 100%; }
main { animation: bdFade .4s ease; }
@keyframes bdFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.caveat { font-family: 'Caveat', cursive; }

/* ===== Header (desktop) ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 12px clamp(28px, 4vw, 56px);
  background: rgba(250, 244, 232, .9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--cream-2);
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand img { width: 40px; height: 40px; display: block; }
.brand span { font-weight: 900; font-size: 20px; color: var(--navy); letter-spacing: -.3px; }
.site-nav { display: flex; align-items: center; gap: 26px; }
.site-nav a { font-size: 15px; font-weight: 700; color: var(--navy); text-decoration: none; }
.site-nav a:hover { color: var(--orange); }
.site-nav .nav-cta {
  background: var(--red); color: #fff; font-weight: 800; font-size: 15px;
  padding: 12px 22px; border-radius: 12px; white-space: nowrap;
}
.site-nav .nav-cta:hover { background: var(--red-dark); color: #fff; }

/* ===== Header (schmale Desktops) ===== */
@media (max-width: 1240px) {
  .site-nav { gap: 18px; }
  .site-nav a { font-size: 14px; white-space: nowrap; }
  .site-nav .nav-cta { font-size: 14px; padding: 11px 16px; }
}

/* ===== Header (mobile) ===== */
@media (max-width: 1099px) {
  .site-header { padding: 11px 18px; background: rgba(250, 244, 232, .94); }
  .site-nav { display: none; }
  .brand img { width: 32px; height: 32px; }
  .brand span { font-size: 17px; }
}

/* ===== Mobile overlay menu ===== */
.mobile-menu {
  display: none;
  position: fixed; inset: 0; z-index: 70;
  background: var(--navy); color: var(--cream);
  padding: 18px;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.mobile-menu-head span { font-weight: 900; font-size: 17px; color: var(--cream); }
.mobile-menu-head button {
  background: none; border: none; color: var(--cream);
  font-size: 30px; line-height: 1; padding: 4px 10px; cursor: pointer;
}
.mobile-menu a {
  font-size: 22px; font-weight: 800; color: var(--cream); text-decoration: none;
  padding: 14px 0; border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.mobile-menu .menu-cta {
  margin-top: auto; background: var(--red); color: #fff; font-weight: 800; font-size: 17px;
  text-align: center; padding: 16px; border-radius: 12px; border-bottom: none;
}

/* ===== Sticky mobile CTA bar ===== */
.mobile-bar {
  display: none;
  position: sticky; bottom: 0; z-index: 60;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
  background: rgba(250, 244, 232, .9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
@media (max-width: 979px) { .mobile-bar { display: flex; } }
.mobile-bar .menu-btn {
  flex: none; display: flex; align-items: center; gap: 9px;
  background: #fff; border: none; color: var(--navy);
  font-family: inherit; font-weight: 800; font-size: 15px;
  padding: 14px 18px; border-radius: 14px; cursor: pointer;
  box-shadow: 0 6px 18px -8px rgba(27, 36, 64, .35);
}
.mobile-bar .menu-btn .burger { display: inline-flex; flex-direction: column; gap: 3.5px; }
.mobile-bar .menu-btn .burger span { display: block; width: 19px; height: 2.5px; background: var(--navy); border-radius: 2px; }
.mobile-bar .bar-cta {
  flex: 1; display: flex; align-items: center; justify-content: center;
  background: var(--red); color: #fff; font-weight: 800; font-size: 15px;
  text-decoration: none; padding: 14px 12px; border-radius: 14px;
  box-shadow: 0 6px 18px -8px rgba(233, 79, 55, .6);
}

/* ===== Buttons ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--red); color: #fff; font-weight: 800;
  font-size: clamp(15px, 1.8vw, 19px); text-decoration: none;
  padding: clamp(14px, 1.7vw, 18px) clamp(24px, 3vw, 34px); border-radius: 14px;
  box-shadow: 0 10px 26px -10px rgba(233, 79, 55, .7);
}
.btn-primary:hover { background: var(--red-dark); }
.btn-dark {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--navy); color: #fff; font-weight: 800;
  font-size: clamp(15px, 1.8vw, 19px); text-decoration: none;
  padding: clamp(14px, 1.7vw, 18px) clamp(26px, 3.2vw, 38px); border-radius: 14px;
}
.btn-dark:hover { background: #111a2e; }
.pill-teal {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1.5px solid var(--teal); color: var(--teal);
  font-weight: 800; font-size: clamp(13px, 1.5vw, 15px); text-decoration: none;
  padding: 11px 18px; border-radius: 999px;
}
.pill-teal:hover { background: var(--teal); color: #fff; }
.pill-teal-sm {
  font-size: 14px; font-weight: 800; color: var(--teal); text-decoration: none;
  border: 1.5px solid var(--teal); border-radius: 999px; padding: 8px 16px;
}
.pill-teal-sm:hover { background: var(--teal); color: #fff; }
.link-underline-teal {
  color: var(--teal); font-weight: 800; font-size: clamp(14px, 1.6vw, 16px);
  text-decoration: none; border-bottom: 2px solid var(--teal); padding-bottom: 2px;
}

/* ===== Hero (dark) ===== */
.hero-dark {
  background: var(--navy); color: var(--cream);
  padding: clamp(44px, 6vw, 88px) clamp(22px, 5vw, 72px);
}
.hero-dark.hero-compact { padding: clamp(40px, 5.5vw, 78px) clamp(22px, 5vw, 72px); }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px; padding: 7px 15px;
  font-size: clamp(11px, 1.3vw, 13px); font-weight: 700; color: var(--peach);
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); display: inline-block; }
.hero-dark h1 { font-weight: 900; line-height: 1.04; letter-spacing: -.5px; color: #fff; }
.hero-sub { font-size: clamp(15px, 1.8vw, 20px); color: var(--hero-muted); }
.hero-note { font-size: clamp(12px, 1.4vw, 14px); color: #8FA0AE; }
.hero-split { display: flex; flex-wrap: wrap; gap: clamp(28px, 4vw, 56px); align-items: center; max-width: 1200px; margin: 0 auto; }
.hero-photo {
  position: relative; border-radius: 22px; overflow: hidden;
  box-shadow: 0 24px 50px -22px rgba(0, 0, 0, .6);
  aspect-ratio: 4 / 5; background: #EAE6E1;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 12%; display: block; }

/* ===== Sections & cards ===== */
.section { padding: clamp(44px, 6vw, 84px) clamp(22px, 5vw, 72px); max-width: 1200px; margin: 0 auto; }
.section-tight { padding-top: 0; }
h2.section-title { font-weight: 900; font-size: clamp(26px, 4.2vw, 44px); line-height: 1.06; margin: 6px 0 clamp(26px, 3.4vw, 40px); }
.kicker { font-family: 'Caveat', cursive; font-size: clamp(20px, 2.6vw, 30px); color: var(--orange); line-height: 1; }

.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: clamp(14px, 2vw, 22px); }
.card { background: #fff; border: 1.5px solid var(--cream-2); border-radius: 20px; padding: clamp(20px, 2.6vw, 28px); }
.card h3 { font-weight: 800; font-size: clamp(17px, 2vw, 21px); margin: 0 0 6px; }
.card p { font-size: clamp(13px, 1.5vw, 15px); color: var(--sand); margin: 0; }
.num-circle {
  width: clamp(42px, 5vw, 52px); height: clamp(42px, 5vw, 52px); border-radius: 50%;
  color: #fff; font-weight: 900; font-size: clamp(19px, 2.4vw, 24px);
  display: grid; place-items: center; margin-bottom: 14px;
}
.num-red { background: var(--red); }
.num-teal { background: var(--teal); }
.num-orange { background: var(--orange); }

.two-col { display: grid; grid-template-columns: 1fr; gap: clamp(14px, 2vw, 22px); }
@media (min-width: 900px) { .two-col { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* ===== Placeholder blocks (testimonials / video / cal.com) ===== */
.placeholder-quote { border: 2px dashed #D8CBB0; border-radius: 18px; padding: clamp(18px, 2.2vw, 26px); background: var(--cream); }
.placeholder-quote .stars { color: var(--amber); font-size: 14px; letter-spacing: 2px; margin-bottom: 10px; }
.placeholder-quote p { font-size: clamp(13px, 1.5vw, 15px); color: var(--sand); margin: 0 0 14px; font-style: italic; }
.placeholder-quote .name { font-weight: 800; font-size: 12px; color: var(--teal); }

.quote { margin: 0; border: 1.5px solid var(--cream-2); border-radius: 18px; padding: clamp(18px, 2.2vw, 26px); background: var(--cream); display: flex; flex-direction: column; }
.quote .avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--teal); color: #fff; font-weight: 900; font-size: 15px; letter-spacing: .5px; display: grid; place-items: center; margin-bottom: 12px; }
.quote .stars { color: var(--amber); font-size: 14px; letter-spacing: 2px; margin-bottom: 10px; }
.quote blockquote { margin: 0; flex: 1; }
.quote blockquote p { font-size: clamp(13px, 1.5vw, 15px); line-height: 1.6; color: var(--sand-dark); margin: 0 0 10px; }
.quote blockquote p:last-child { margin-bottom: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.video-placeholder {
  position: relative; border-radius: 20px; overflow: hidden; aspect-ratio: 16 / 9;
  border: 2px dashed #C8B994;
  background: repeating-linear-gradient(135deg, var(--navy), var(--navy) 12px, var(--navy-stripe) 12px, var(--navy-stripe) 24px);
  display: grid; place-items: center;
}
.video-placeholder .inner { text-align: center; color: var(--cream); padding: 20px; }
.video-placeholder .play {
  width: clamp(52px, 6vw, 72px); height: clamp(52px, 6vw, 72px); border-radius: 50%;
  background: var(--red); display: grid; place-items: center; margin: 0 auto 14px;
}
.video-placeholder .play span {
  border-left: clamp(15px, 1.7vw, 20px) solid #fff;
  border-top: clamp(10px, 1.1vw, 12px) solid transparent;
  border-bottom: clamp(10px, 1.1vw, 12px) solid transparent;
  margin-left: 5px; display: block;
}
.video-placeholder .note { font-size: clamp(12px, 1.4vw, 14px); max-width: 36em; margin: 0 auto; opacity: .9; }

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: #fff; border: 1.5px solid var(--cream-2); border-radius: 14px; overflow: hidden; }
.faq-item button {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 14px;
  text-align: left; background: none; border: none; padding: 18px 20px;
  font-family: inherit; font-weight: 800; font-size: clamp(15px, 1.7vw, 18px);
  color: var(--navy); cursor: pointer;
}
.faq-item button .sign { color: var(--red); font-size: 24px; line-height: 1; }
.faq-item .faq-answer { display: none; padding: 0 20px 18px; font-size: clamp(13px, 1.5vw, 15px); color: var(--sand); }
.faq-item.open .faq-answer { display: block; }

/* ===== CTA boxes ===== */
.cta-box {
  background: var(--red); border-radius: 26px;
  padding: clamp(30px, 4.5vw, 60px); text-align: center; color: #fff;
}
.cta-box h2 { font-weight: 900; font-size: clamp(26px, 4vw, 44px); line-height: 1.06; margin: 0 0 12px; }
.cta-box .sub { font-size: clamp(14px, 1.7vw, 18px); color: #FCE4DE; max-width: 40em; margin: 0 auto clamp(22px, 2.8vw, 30px); }
.cta-box .lead { font-size: clamp(16px, 2vw, 22px); font-weight: 800; margin: 0 0 18px; color: #fff; }

.cta-strip {
  background: var(--cream-2); border-radius: 22px; padding: clamp(24px, 3.4vw, 40px);
  display: flex; flex-wrap: wrap; align-items: center; gap: 16px; justify-content: space-between;
}
.cta-strip h2 { font-weight: 900; font-size: clamp(20px, 2.8vw, 28px); line-height: 1.1; margin: 0 0 6px; }
.cta-strip p { font-size: clamp(14px, 1.6vw, 17px); color: var(--sand-dark); margin: 0; }
.cta-strip .btn-sm {
  flex: none; background: var(--red); color: #fff; font-weight: 800;
  font-size: clamp(14px, 1.6vw, 17px); text-decoration: none; padding: 14px 26px; border-radius: 13px;
}
.cta-strip .btn-sm:hover { background: var(--red-dark); }

/* ===== Ratgeber-Artikel (Markdown-Inhalt) ===== */
.article-body h2 { font-weight: 900; font-size: clamp(20px, 2.8vw, 28px); line-height: 1.12; margin: clamp(24px, 3vw, 36px) 0 10px; }
.article-body h2:first-child { margin-top: 0; }
.article-body h3 { font-weight: 800; font-size: clamp(17px, 2.2vw, 22px); line-height: 1.2; margin: 22px 0 8px; }
.article-body p { font-size: clamp(15px, 1.7vw, 18px); color: var(--sand-dark); margin: 0 0 14px; line-height: 1.65; }
.article-body ul, .article-body ol { font-size: clamp(15px, 1.7vw, 18px); color: var(--sand-dark); line-height: 1.65; margin: 0 0 14px; padding-left: 1.3em; }
.article-body li { margin-bottom: 6px; }
.article-body a { color: var(--teal); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

/* ===== Prose ===== */
.prose h2 { font-weight: 900; font-size: clamp(21px, 3vw, 30px); line-height: 1.1; margin: 0 0 12px; }
.prose p { font-size: clamp(15px, 1.7vw, 18px); color: var(--sand-dark); margin: 0 0 14px; }
.prose p:last-child { margin-bottom: 0; }

/* ===== Footer ===== */
.site-footer {
  background: var(--navy-deep); color: var(--footer-text);
  padding: clamp(34px, 4.5vw, 56px) clamp(22px, 5vw, 72px) clamp(56px, 5vw, 56px);
}
@media (max-width: 979px) { .site-footer { padding-bottom: 80px; } }
.site-footer .cols { max-width: 1200px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: clamp(20px, 3vw, 40px); align-items: flex-start; }
.site-footer .col { flex: 1 1 200px; display: flex; flex-direction: column; gap: 10px; }
.site-footer .col.brand-col { flex: 1 1 240px; }
.site-footer .brand-row { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.site-footer .brand-row img { width: 36px; height: 36px; display: block; }
.site-footer .brand-row span { font-weight: 900; font-size: 18px; color: #fff; }
.site-footer .tagline { font-family: 'Caveat', cursive; font-size: 22px; color: var(--amber); margin: 0; }
.site-footer a { color: var(--footer-text); text-decoration: none; font-size: 14px; font-weight: 600; }
.site-footer a:hover { color: #fff; }
.site-footer a.cta { color: var(--peach); font-weight: 800; }
.site-footer a.legal { color: #8794A3; font-size: 13px; font-weight: 400; }

.cal-embed { min-height: 620px; border: 1.5px solid var(--cream-2); border-radius: 20px; background: #fff; overflow: hidden; position: relative; }
.cal-embed .cal-fallback { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; padding: 24px; margin: 0; font-size: 14px; color: var(--sand); z-index: 0; }
.cal-embed .cal-fallback a { color: var(--teal); font-weight: 800; }
.cal-embed > iframe, .cal-embed > div, .cal-embed cal-inline { position: relative; z-index: 1; background: #fff; }
@media (max-width: 640px) { .cal-embed { min-height: 720px; border-radius: 16px; } }

.site-footer a.mail { color: var(--cream); font-weight: 600; font-size: 14px; }

.no-slot { margin-top: clamp(16px, 2vw, 22px); background: var(--cream-2); border-radius: 18px; padding: clamp(18px, 2.6vw, 26px); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px 24px; }
.no-slot h2 { font-weight: 900; font-size: clamp(18px, 2.4vw, 22px); margin: 0 0 4px; color: var(--navy); }
.no-slot p { font-size: clamp(13px, 1.5vw, 15px); color: var(--sand-dark); margin: 0; }
.no-slot .btn-mail { flex: none; background: var(--navy); color: #fff; font-weight: 800; font-size: clamp(14px, 1.6vw, 16px); text-decoration: none; padding: 13px 22px; border-radius: 12px; word-break: break-all; }

/* Preise */
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: clamp(16px, 2vw, 24px); align-items: stretch; }
.price-card { position: relative; display: flex; flex-direction: column; background: #fff; border: 1.5px solid var(--cream-2); border-radius: 22px; padding: clamp(24px, 3vw, 36px); }
.price-card.featured { border-color: var(--teal); box-shadow: 0 12px 40px rgba(19, 110, 120, .12); }
.price-card .badge { position: absolute; top: -12px; right: 22px; background: var(--orange); color: #fff; font-weight: 800; font-size: 12px; letter-spacing: .3px; padding: 5px 12px; border-radius: 999px; }
.price-card .icon { width: 52px; height: 52px; border-radius: 14px; background: var(--cream); color: var(--teal); display: grid; place-items: center; margin-bottom: 18px; }
.price-card h2 { font-weight: 900; font-size: clamp(20px, 2.4vw, 24px); margin: 0 0 8px; color: var(--navy); }
.price-card .price { font-weight: 900; font-size: clamp(34px, 4vw, 44px); line-height: 1; color: var(--navy); letter-spacing: -.5px; }
.price-card .unit { font-size: 14px; font-weight: 700; color: var(--sand); margin: 6px 0 16px; }
.price-card .intro { font-size: clamp(14px, 1.5vw, 15px); color: var(--sand-dark); line-height: 1.55; margin: 0 0 18px; }
.price-card ul { list-style: none; margin: 0 0 24px; padding: 0; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.price-card li { display: flex; gap: 10px; align-items: flex-start; font-size: clamp(14px, 1.5vw, 15px); color: var(--sand-dark); line-height: 1.5; }
.price-card li svg { flex: none; color: var(--teal); margin-top: 3px; }
.price-card .card-cta { display: block; text-align: center; background: var(--navy); color: #fff; font-weight: 800; font-size: 15px; text-decoration: none; padding: 13px 20px; border-radius: 12px; }
.price-card.featured .card-cta { background: var(--red); }
.price-card .card-cta:hover { filter: brightness(1.1); }
.price-notes { max-width: 760px; margin: clamp(28px, 3.6vw, 44px) auto 0; }
.price-notes p { font-size: clamp(13px, 1.5vw, 15px); color: var(--sand); line-height: 1.6; margin: 0 0 10px; text-align: center; }
.price-notes a { color: var(--teal); font-weight: 700; }
