/* Schichtly Hilfe-Center – Design-Tokens & Layout analog Homepage */

:root {
  --lime: #C8F135;
  --lime-dark: #9FC200;
  --ink: #0E0E0E;
  --ink-soft: #3A3A3A;
  --ink-muted: #888;
  --white: #FFFFFF;
  --surface: #F5F5F0;
  --surface2: #ECECEC;
  --purple: #6C3FF5;
  --purple-light: #EDE8FF;
  --border: rgba(14,14,14,0.10);
  --radius: 16px;
  --radius-lg: 24px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Epilogue', sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: 'Syne', sans-serif; letter-spacing: -0.01em; line-height: 1.15; }

/* NAV (wie Homepage) */
nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw; height: 60px;
  background: var(--ink);
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800; font-size: 20px;
  color: var(--lime);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-links { display: flex; align-items: center; gap: 24px; list-style: none; }
.nav-links a {
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.5); text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--lime) !important;
  color: var(--ink) !important;
  padding: 7px 18px;
  border-radius: 40px;
  font-size: 13px !important;
  font-weight: 600 !important;
  transition: opacity 0.2s !important;
}
.nav-cta:hover { opacity: 0.85 !important; }

/* HERO / SEITENKOPF */
.help-hero { background: var(--ink); color: var(--white); padding: 56px 5vw 52px; }
.breadcrumb { font-size: 13px; margin-bottom: 20px; color: rgba(255,255,255,0.35); }
.breadcrumb a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--white); }
.help-hero h1 { font-size: clamp(28px, 4vw, 44px); max-width: 800px; }
.help-hero .lead { margin-top: 14px; font-size: 17px; color: rgba(255,255,255,0.65); max-width: 660px; }
.module-price {
  display: inline-block; margin-top: 20px;
  background: var(--lime); color: var(--ink);
  font-size: 13px; font-weight: 600;
  padding: 6px 14px; border-radius: 40px;
}

/* ARTIKEL */
main { padding: 48px 5vw 72px; }
article {
  max-width: 780px; margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px clamp(20px, 4vw, 48px) 44px;
}
article h2 { font-size: 23px; margin: 36px 0 14px; }
article h2:first-child { margin-top: 0; }
article p { margin: 0 0 16px; font-size: 15.5px; color: var(--ink-soft); }
article ol, article ul { margin: 0 0 20px 22px; }
article li { margin-bottom: 10px; font-size: 15.5px; color: var(--ink-soft); }
article li strong, article p strong { color: var(--ink); }
article a { color: var(--ink); font-weight: 600; }

.info-box {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin: 26px 0;
  font-size: 14.5px; color: var(--ink-soft);
}

/* RATGEBER: Stand-Zeile, Rechtshinweis, Quellen */
.meta-line {
  margin-top: 22px;
  font-size: 13px; color: rgba(255,255,255,0.45);
}
.meta-line strong { color: rgba(255,255,255,0.7); font-weight: 600; }
.disclaimer {
  border-left: 3px solid var(--lime-dark);
  background: var(--surface);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  margin: 30px 0 0;
  font-size: 13.5px; color: var(--ink-muted);
}
.sources { margin-top: 30px; }
.sources h2 { font-size: 16px; margin-bottom: 10px; }
.sources ol { margin-left: 20px; }
.sources li { font-size: 13px; color: var(--ink-muted); margin-bottom: 6px; }
.sources a { font-weight: 500; word-break: break-word; }
.key-take {
  background: var(--ink); color: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 0 0 28px;
}
.key-take strong { color: var(--lime); display: block; margin-bottom: 6px; font-family: 'Syne', sans-serif; font-size: 14px; }
.key-take p { color: rgba(255,255,255,0.8) !important; margin: 0 !important; font-size: 15px !important; }
.info-box strong { color: var(--ink); }

/* FAQ (wie Homepage) */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary {
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 0;
  font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-family: 'Epilogue', sans-serif;
  font-size: 22px; font-weight: 400;
  color: var(--ink-muted); transition: transform 0.2s; flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 0 20px; }

/* CTA-BOX */
.help-cta {
  max-width: 780px; margin: 28px auto 0;
  background: var(--lime);
  border-radius: var(--radius-lg);
  padding: 36px clamp(20px, 4vw, 48px);
  text-align: center;
}
.help-cta h2 { font-size: 24px; margin-bottom: 8px; }
.help-cta p { font-size: 15px; color: rgba(14,14,14,0.6); margin-bottom: 22px; }
.help-cta .btn-row { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.btn-ink {
  background: var(--ink); color: var(--white);
  border: none; cursor: pointer;
  font-family: 'Epilogue', sans-serif;
  font-size: 14px; font-weight: 600;
  padding: 13px 26px; border-radius: 40px;
  text-decoration: none;
  transition: opacity 0.2s;
  display: inline-block;
}
.btn-ink:hover { opacity: 0.8; }
.btn-ink-outline {
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--ink); cursor: pointer;
  font-family: 'Epilogue', sans-serif;
  font-size: 14px; font-weight: 600;
  padding: 13px 26px; border-radius: 40px;
  text-decoration: none;
  transition: opacity 0.2s;
  display: inline-block;
}
.btn-ink-outline:hover { opacity: 0.6; }

/* ÜBERSICHT (hilfe/index.html) */
.help-groups { max-width: 1100px; margin: 0 auto; }
.group-title {
  font-family: 'Syne', sans-serif;
  font-size: 18px; font-weight: 700;
  margin: 40px 0 16px;
}
.help-groups .group-title:first-child { margin-top: 0; }
.help-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
}
.help-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 20px 18px 18px;
  transition: transform 0.2s, box-shadow 0.2s;
  display: block;
  text-decoration: none;
  color: inherit;
}
.help-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(14,14,14,0.08); }
.help-card .icon { font-size: 24px; margin-bottom: 10px; }
.help-card .name { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.help-card .desc { font-size: 12.5px; color: var(--ink-muted); line-height: 1.5; }
.help-card .link { display: inline-block; margin-top: 12px; font-size: 12.5px; font-weight: 600; color: var(--ink); }

/* FOOTER (wie Homepage) */
footer {
  background: var(--ink);
  padding: 28px 5vw;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.foot-logo {
  font-family: 'Syne', sans-serif;
  font-size: 18px; font-weight: 800;
  color: var(--lime); text-decoration: none;
}
.foot-links { display: flex; gap: 20px; list-style: none; flex-wrap: wrap; }
.foot-links a { font-size: 13px; color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.2s; }
.foot-links a:hover { color: var(--white); }
.foot-copy { font-size: 13px; color: rgba(255,255,255,0.25); }

@media (max-width: 720px) {
  .nav-links li:not(:last-child) { display: none; }
}
