/* ── BASE ── */
body { font-family: 'Inter', system-ui, sans-serif; background: #fff; }

/* ── NAV ── */
.pc-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,250,248,.93);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e5e5e0;
  height: 62px;
  display: flex; align-items: center;
  padding: 0 24px;
  justify-content: space-between;
}
.pc-nav-logo {
  font-size: 17px; font-weight: 400; color: #494A4C;
  text-decoration: none; display: flex; align-items: center; gap: 8px;
}
.pc-nav-logo strong { font-weight: 700; }
.pc-nav-links { display: flex; gap: 4px; align-items: center; }
.pc-nav-links a {
  font-size: 14px; font-weight: 500; color: #5a5a6a;
  text-decoration: none; padding: 7px 14px; border-radius: 8px;
  transition: all .18s; border: none; background: none; cursor: pointer;
}
.pc-nav-links a:hover { color: #0f0f0f; background: #f0ede8; }
.pc-nav-links a.pc-active { color: var(--bs-primary); background: #dbeafe; }
.pc-nav-cta {
  background: var(--bs-primary) !important; color: #fff !important;
  border-radius: 8px; padding: 8px 20px !important; font-weight: 600 !important;
}
.pc-nav-cta:hover { background: #1d4ed8 !important; color: #fff !important; }

/* ── MOBILE BURGER ── */
.pc-nav-burger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px; border-radius: 6px;
}
.pc-nav-burger span {
  display: block; width: 22px; height: 2px;
  background: #494A4C; border-radius: 2px; transition: all .2s;
}
.pc-nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.pc-nav-burger.open span:nth-child(2) { opacity: 0; }
.pc-nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU ── */
.pc-mobile-menu {
  display: none; flex-direction: column; gap: 2px;
  background: rgba(250,250,248,.97); backdrop-filter: blur(10px);
  border-bottom: 1px solid #e5e5e0;
  padding: 10px 16px 16px; position: fixed; top: 62px; left: 0; right: 0; z-index: 99;
}
.pc-mobile-menu.open { display: flex; }
.pc-mobile-menu a {
  font-size: 15px; font-weight: 500; color: #5a5a6a;
  text-decoration: none; padding: 10px 14px; border-radius: 8px;
}
.pc-mobile-menu a:hover { background: #f0ede8; color: #0f0f0f; }
.pc-mobile-menu a.pc-active { color: var(--bs-primary); background: #dbeafe; }
.pc-mobile-cta {
  background: var(--bs-primary) !important; color: #fff !important;
  font-weight: 600 !important; margin-top: 6px; text-align: center;
}
.pc-mobile-submenu-toggle { display: flex !important; align-items: center; width: 100%; }
.pc-mobile-submenu-toggle i { margin-left: auto; }
.pc-mobile-submenu-items { display: none; flex-direction: column; gap: 2px; padding-left: 14px; margin-top: 2px; }
.pc-mobile-submenu.open .pc-mobile-submenu-items { display: flex; }
.pc-mobile-submenu-items a { font-size: 14px; color: #8a8a9a; }

/* ── PAGES ── */
.pc-page { display: none; min-height: 100vh; position: relative; overflow: hidden; }
.pc-page.active { display: block; animation: pcFade .3s ease; }
@keyframes pcFade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

/* ── HERO ── */
.pc-hero {
  background-size: cover; background-position: center;
  padding: 100px 0 80px;
}

/* ── SHARED ── */
.pc-section { padding: 80px 0; position: relative; z-index: 1; }
.pc-page h2,
#page-gruender h2,
#page-therapeuten h2,
#page-handwerk h2,
#page-dienstleister h2 { color: #7d7d8d; }

/* Dekorativer Hintergrund-Glow, an die Seite gebunden statt an den Viewport (fixed hätte auf iOS Safari den scrollbaren Bereich vergrößert) */
.pc-glow { position: absolute; pointer-events: none; z-index: 0; border-radius: 50%; filter: blur(100px); }

/* Section-Gradienten: alternierend 135deg (primär) / 225deg (sekundär) */
#page-start section.pc-section:nth-of-type(odd)  { background: linear-gradient(135deg, rgba(28,30,203,0.04) 0%, transparent 60%); }
#page-start section.pc-section:nth-of-type(even) { background: linear-gradient(225deg, rgba(224,17,109,0.04) 0%, transparent 60%); }

#page-gruender section.pc-section:nth-of-type(odd)  { background: linear-gradient(135deg, rgba(28,30,203,0.04) 0%, transparent 60%); }
#page-gruender section.pc-section:nth-of-type(even) { background: linear-gradient(225deg, rgba(224,17,109,0.04) 0%, transparent 60%); }

#page-therapeuten section.pc-section:nth-of-type(odd)  { background: linear-gradient(135deg, rgba(22,163,74,0.04) 0%, transparent 60%); }
#page-therapeuten section.pc-section:nth-of-type(even) { background: linear-gradient(225deg, rgba(20,184,166,0.04) 0%, transparent 60%); }

#page-handwerk section.pc-section:nth-of-type(odd)  { background: linear-gradient(135deg, rgba(217,119,6,0.04) 0%, transparent 60%); }
#page-handwerk section.pc-section:nth-of-type(even) { background: linear-gradient(225deg, rgba(234,88,12,0.04) 0%, transparent 60%); }

#page-dienstleister section.pc-section:nth-of-type(odd)  { background: linear-gradient(135deg, rgba(124,58,237,0.04) 0%, transparent 60%); }
#page-dienstleister section.pc-section:nth-of-type(even) { background: linear-gradient(225deg, rgba(219,39,119,0.04) 0%, transparent 60%); }

.pc-eyebrow {
  display: inline-block; font-size: 12px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 50px; margin-bottom: 16px;
}
.pc-card-hover { transition: transform .18s, box-shadow .18s; }
.pc-card-hover:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,.1) !important; }
.pc-step-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--bs-primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 700; flex-shrink: 0;
}
.pc-check {
  width: 22px; height: 22px; border-radius: 50%;
  background: #d1fae5; color: #059669;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; flex-shrink: 0; margin-top: 2px;
}
.comparison th.hl { background: #dbeafe; color: var(--bs-primary); }
.comparison td.hl { background: rgba(13,110,253,.04); font-weight: 500; }
.comparison td.lbl { font-weight: 600; }
.tick { color: #16a34a; }
.cross { color: #dc2626; }
.partial { color: #d97706; font-size: .82rem; }
.pc-price-card {
  background: var(--bs-primary); color: #fff;
  border-radius: 16px; padding: 40px;
  position: relative; overflow: hidden;
}
.pc-price-card::before {
  content: ''; position: absolute; top: -50px; right: -50px;
  width: 180px; height: 180px; border-radius: 50%;
  background: rgba(255,255,255,.1);
}

/* ── ZG CARDS (Startseite) ── */
.zg-card {
  border: 2px solid #e5e5e0; border-radius: 14px;
  padding: 28px; cursor: pointer; transition: all .22s;
  text-decoration: none; display: flex; flex-direction: column; background: #fff; height: 100%;
}
.zg-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,.1); }
.zg-card.blue:hover { border-color: var(--bs-primary); }
.zg-card.green:hover { border-color: #16a34a; }
.zg-card.amber:hover { border-color: #d97706; }
.zg-card.violet:hover { border-color: #7c3aed; }
.zg-icon { width: 50px; height: 50px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 14px; }

/* ── FOOTER ── */
.pc-footer { background: #0f0f0f; color: rgba(255,255,255,.5); padding: 48px 0 32px; font-size: 14px; }
.pc-footer a { color: rgba(255,255,255,.6); text-decoration: none; }
.pc-footer a:hover { color: #fff; }
.pc-footer-logo { color: #fff; font-weight: 700; font-size: 18px; margin-bottom: 6px; }
.pc-footer-logo span { color: var(--bs-primary); font-weight: 400; }

/* ── FAQ ── */
.pc-faq-item { border-bottom: 1px solid #e5e5e0; overflow: hidden; }
.pc-faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0; text-align: left; font-size: 15px; font-weight: 600;
  color: #0f0f0f; gap: 16px; transition: color .2s;
}
.pc-faq-question:hover { color: var(--bs-primary); }
.pc-faq-icon { flex-shrink: 0; transition: transform .3s; color: #9898aa; }
.pc-faq-item.open .pc-faq-icon { transform: rotate(45deg); color: var(--bs-primary); }
.pc-faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .2s;
  font-size: 14px; color: #5a5a6a; line-height: 1.7;
}
.pc-faq-item.open .pc-faq-answer { max-height: 300px; padding-bottom: 18px; }

/* ── SCREENSHOT TABS (Beispiele) ── */
.pc-tab-btn {
  border: 1.5px solid #e5e5e0; background: #fff; border-radius: 50px;
  padding: 7px 18px; font-size: 13px; font-weight: 500; color: #5a5a6a;
  cursor: pointer; transition: all .2s;
  display: inline-flex; align-items: center; gap: 6px;
}
.pc-tab-btn:hover { border-color: var(--bs-primary); color: var(--bs-primary); }
.pc-tab-btn.active { background: var(--bs-primary); color: #fff; border-color: var(--bs-primary); font-weight: 600; }
.pc-screen-example { animation: pcFade .3s ease; }

/* ── MODAL (Branchen- & Login-Modal) ── */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 500;
  background: rgba(15,15,15,.55); backdrop-filter: blur(4px);
  justify-content: center; padding: 24px;
  overflow-y: auto; -webkit-overflow-scrolling: touch;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: #fff; border-radius: 20px; padding: 40px 36px;
  max-width: 520px; width: 100%;
  margin: auto 0;
  box-shadow: 0 24px 80px rgba(0,0,0,.18); position: relative;
}
.modal-close {
  position: absolute; top: 16px; right: 20px;
  background: #f4f1ec; border: none; cursor: pointer;
  width: 32px; height: 32px; border-radius: 50%;
  font-size: 16px; color: #5a5a6a;
  display: flex; align-items: center; justify-content: center;
}
.modal-close:hover { background: #e5e5e0; }
.branchen-card {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px; border: 2px solid #e5e5e0;
  border-radius: 12px; cursor: pointer; transition: all .2s;
  text-align: left; background: #fff; width: 100%; margin-bottom: 10px;
}
.branchen-card:hover { border-color: var(--bs-primary); background: #dbeafe; transform: translateX(4px); }
.branchen-card.green:hover { border-color: #16a34a; background: #d1fae5; }
.branchen-card.amber:hover { border-color: #d97706; background: #fef3c7; }
.branchen-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.login-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.login-field label { font-size: 13px; font-weight: 600; color: #0f0f0f; }
.login-field input {
  border: 1.5px solid #e5e5e0; border-radius: 8px;
  padding: 11px 14px; font-size: 15px; outline: none; transition: border-color .2s;
}
.login-field input:focus { border-color: var(--bs-primary); }

/* ── NAV DROPDOWN ── */
.pc-nav-dropdown { position: relative; display: flex; align-items: center; }
.pc-nav-dropdown > a { display: flex; align-items: center; gap: 4px; }
.pc-nav-dropdown-menu {
  position: absolute; top: calc(100% + 6px); left: 0;
  background: #fff; border: 1px solid #e5e5e0; border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
  min-width: 240px; padding: 6px;
  opacity: 0; visibility: hidden;
  transform: translateY(-4px);
  transition: opacity .15s, transform .15s, visibility .15s;
  z-index: 200;
}
.pc-nav-dropdown.open .pc-nav-dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.pc-nav-dropdown-menu a {
  display: block !important; padding: 9px 14px; border-radius: 7px;
  font-size: 14px; font-weight: 500; color: #5a5a6a;
  text-decoration: none; transition: all .15s;
}
.pc-nav-dropdown-menu a:hover,
.pc-nav-dropdown-menu a.pc-active { background: #dbeafe; color: var(--bs-primary); }

/* ── RATGEBER (Landing) ── */
#page-ratgeber section.pc-section:nth-of-type(odd)  { background: linear-gradient(135deg, rgba(37,99,235,0.04) 0%, transparent 60%); }
#page-ratgeber section.pc-section:nth-of-type(even) { background: linear-gradient(225deg, rgba(99,102,241,0.04) 0%, transparent 60%); }
#page-ratgeber h2 { color: #1a1a2e; }

/* ── RATGEBER ARTIKEL (schmale Lesespalte) ── */
.pcg-wrap { max-width: 800px; margin: 0 auto; padding: 0 1.5rem 5rem; }
.pcg-hero { padding: 3.5rem 0 2.5rem; border-bottom: 1px solid #e5e5e0; margin-bottom: 3rem; }
.pcg-eyebrow { font-size: 12px; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; color: #9898aa; margin-bottom: 1rem; }
.pcg-hero h1 { font-size: 34px; font-weight: 600; line-height: 1.2; color: #111; margin-bottom: 1.25rem; max-width: 560px; }
.pcg-lead { font-size: 18px; color: #555; max-width: 620px; line-height: 1.65; margin: 0; }
.pcg-toc { background: #f8f9fc; border: 1px solid #e5e5e0; border-radius: 10px; padding: 1.5rem 1.75rem; margin-bottom: 3.5rem; }
.pcg-toc-title { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: #9898aa; margin-bottom: .75rem; }
.pcg-toc-list { list-style: none; counter-reset: toc; display: grid; grid-template-columns: 1fr 1fr; gap: .3rem 2rem; padding: 0; margin: 0; }
.pcg-toc-list li { counter-increment: toc; display: flex; align-items: baseline; gap: .5rem; font-size: 14px; }
.pcg-toc-list li::before { content: counter(toc); font-size: 11px; font-weight: 600; color: #9898aa; min-width: 14px; }
.pcg-toc-list a { color: #1a1a2e; text-decoration: none; border-bottom: 1px solid #ddd; }
.pcg-toc-list a:hover { border-bottom-color: var(--bs-primary); color: var(--bs-primary); }
.pcg-section { margin-bottom: 3.5rem; }
.pcg-section-number { font-size: 11px; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; color: #9898aa; margin-bottom: .4rem; }
.pcg-section h2 { font-size: 24px; font-weight: 600; margin-bottom: 1.25rem; color: #111; line-height: 1.3; }
.pcg-section h3 { font-size: 16px; font-weight: 600; margin: 1.75rem 0 .6rem; color: #111; }
.pcg-section p { color: #444; margin-bottom: 1rem; }
.pcg-section p:last-child { margin-bottom: 0; }
.pcg-pro-con-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1.25rem 0; }
.pcg-pro-card, .pcg-con-card { border: 1px solid #e5e5e0; border-radius: 10px; padding: 1rem 1.25rem; background: #fff; }
.pcg-pro-label, .pcg-con-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .07em; margin-bottom: .75rem; display: flex; align-items: center; gap: .4rem; }
.pcg-pro-label { color: #16a34a; }
.pcg-con-label { color: #dc2626; }
.pcg-list { list-style: none; padding: 0; margin: 0; }
.pcg-list li { font-size: 13.5px; color: #555; padding: .35rem 0; border-bottom: 1px solid #f0f0ee; display: flex; gap: .5rem; align-items: flex-start; }
.pcg-list li:last-child { border-bottom: none; }
.pcg-checklist { list-style: none; padding: 0; margin: .75rem 0 1rem; }
.pcg-checklist li { font-size: 14.5px; color: #444; padding: .45rem 0; border-bottom: 1px solid #f0f0ee; display: flex; gap: .6rem; align-items: flex-start; }
.pcg-checklist li:last-child { border-bottom: none; }
.pcg-callout { border-left: 2px solid #e5e5e0; padding: .75rem 1.25rem; margin: 1.5rem 0; background: #f8f9fc; border-radius: 0 8px 8px 0; }
.pcg-callout-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: #9898aa; margin-bottom: .4rem; }
.pcg-callout p { font-size: 14px; margin: 0; color: #555; }
.pcg-blockquote { font-size: 18px; line-height: 1.55; color: #111; border-left: 2px solid #e5e5e0; padding: .5rem 0 .5rem 1.25rem; margin: 2rem 0; font-style: italic; }
/* Process steps (subtle circle numbers, not the big blue pc-step-num) */
.pcg-steps { margin: 1.5rem 0; }
.pcg-step { display: flex; gap: 1rem; padding: 1.25rem 0; border-bottom: 1px solid #f0f0ee; align-items: flex-start; }
.pcg-step:last-child { border-bottom: none; }
.pcg-step-num { min-width: 28px; height: 28px; border-radius: 50%; background: #f8f9fc; border: 1px solid #e5e5e0; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 600; color: #9898aa; flex-shrink: 0; margin-top: 2px; }
.pcg-step-content h4 { font-size: 15px; font-weight: 600; margin-bottom: .35rem; color: #111; }
.pcg-step-content p { font-size: 14px; color: #555; margin: 0; }
/* Example/comparison grid */
.pcg-example-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1.25rem 0; }
.pcg-example-card { background: #fff; border: 1px solid #e5e5e0; border-radius: 10px; padding: 1rem 1.25rem; }
.pcg-example-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .07em; margin-bottom: .75rem; display: flex; align-items: center; gap: .4rem; }
.pcg-label-good { color: #16a34a; }
.pcg-label-bad  { color: #dc2626; }
.pcg-label-neutral { color: #5a5a6a; }
.pcg-example-card ul { list-style: none; padding: 0; margin: 0; font-size: 13.5px; color: #555; }
.pcg-example-card ul li { padding: .3rem 0; border-bottom: 1px solid #f0f0ee; }
.pcg-example-card ul li:last-child { border-bottom: none; }
.pcg-divider { border: none; border-top: 1px solid #e5e5e0; margin: 3rem 0; }
.pcg-fazit { background: #f8f9fc; border: 1px solid #e5e5e0; border-radius: 12px; padding: 2rem; margin-top: 3rem; }
.pcg-fazit h2 { font-size: 22px; font-weight: 600; margin-bottom: 1rem; color: #111; }
.pcg-fazit p { font-size: 15px; color: #555; margin-bottom: 1rem; }
.pcg-fazit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin-top: 1.5rem; }
.pcg-fazit-item { background: #fff; border: 1px solid #e5e5e0; border-radius: 8px; padding: .75rem 1rem; font-size: 13px; color: #555; }
.pcg-fazit-item strong { display: block; font-size: 13px; font-weight: 600; color: #111; margin-bottom: .2rem; }
@media (max-width: 540px) {
  .pcg-toc-list, .pcg-pro-con-grid, .pcg-example-grid, .pcg-fazit-grid { grid-template-columns: 1fr; }
  .pcg-hero h1 { font-size: 26px; }
}

@media (max-width: 768px) {
  .pc-nav-links a { display: none; }
  .pc-nav-links .pc-nav-dropdown { display: none; }
  .pc-nav-burger { display: flex; }
  .pc-hero { padding: 70px 0 56px; }
  #pcPrevSlot, #pcNextSlot { display: none !important; }
  #pcCenterSlot { flex: 0 0 100% !important; }
  #pcCenterSlot .pc-slide-desktop img { height: auto !important; object-fit: unset !important; }
  .table.comparison th:first-child,
  .table.comparison td:first-child {
    position: sticky; left: 0; z-index: 1;
    background: #fff; min-width: 110px;
    border-right: 1px solid #e2e8f0;
  }
  .table.comparison thead th:first-child { background: #f8fafc; }
  .table.comparison th, .table.comparison td { min-width: 100px; }
}
