/* ─────────────────────────────────────────────────────────────
   leistungen.css — shared styles for all Leistungsseiten
   Depends on style.css (variables + nav/footer/hero/faq/btn/cta).
   ───────────────────────────────────────────────────────────── */

.lp {
  background: var(--white);
}

.lp-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 28px;
}

.lp-inner--wide { max-width: 1100px; }

/* ── Generic section rhythm ── */
.lp-section {
  padding: 56px 0;
  border-top: 1px solid var(--border);
}

.lp-section:first-of-type { border-top: none; }

.lp-section h2 {
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.3px;
  color: var(--text);
  margin-bottom: 8px;
}

.lp-section h2 + .lp-lead {
  margin-bottom: 24px;
}

.lp-lead {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.lp-section p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 14px;
}

.lp-section strong { color: var(--text); font-weight: 600; }

/* ── "Für wen" / bullet cards ── */
.lp-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 8px;
}

.lp-card {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 24px;
}

.lp-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.lp-card p { font-size: 14px; margin-bottom: 0; }

/* ── Checklist ── */
.lp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 8px 0 8px;
}

.lp-list li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

.lp-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green-light);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%234A8C6F' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ── Ablauf steps ── */
.lp-steps {
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}

.lp-step {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  align-items: start;
}

.lp-step::before {
  counter-increment: step;
  content: counter(step);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-step h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
  padding-top: 8px;
}

.lp-step p { font-size: 14px; margin-bottom: 0; }

/* ── Role separation (Arzt / Labor / Coaching) ── */
.lp-roles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 12px;
}

.lp-role {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 24px;
  background: var(--white);
}

.lp-role__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.lp-role__tag--arzt   { background: rgba(89,147,185,0.12); color: var(--teal-dark); }
.lp-role__tag--labor  { background: var(--green-light);    color: var(--green); }
.lp-role__tag--coach  { background: rgba(29,51,71,0.08);   color: var(--navy); }

.lp-role h3 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.lp-role p  { font-size: 14px; margin-bottom: 0; }

/* ── Cost / Selbstzahler note ── */
.lp-cost {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 28px;
}

.lp-cost h3 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.lp-cost p  { font-size: 14px; margin-bottom: 0; }

/* ── Values / lab-parameter chips ── */
.lp-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.lp-chip {
  background: var(--light-bg);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
}

/* ── FAQ (reuse site faq-item; ensure spacing on service pages) ── */
.lp-faq .faq-item { max-width: 100%; }

/* ── Related / internal links ── */
.lp-related {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 12px;
}

.lp-related a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s;
}

.lp-related a:hover { border-color: var(--teal); transform: translateY(-2px); color: var(--teal); }
.lp-related a span { color: var(--teal); }

/* ── Medical disclaimer ── */
.lp-disclaimer {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 28px 56px;
}

.lp-disclaimer__box {
  background: rgba(89,147,185,0.05);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 22px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}

.lp-disclaimer__box strong { color: var(--text); }

/* ── Leistungen overview grid ── */
.lp-overview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 8px;
}

.lp-overview-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px 28px;
  text-decoration: none;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}

.lp-overview-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(89,147,185,0.10);
  border-color: var(--teal);
}

.lp-overview-card__tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--teal);
  margin-bottom: 10px;
}

.lp-overview-card h3 { font-size: 18px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.lp-overview-card p  { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 14px; flex-grow: 1; }
.lp-overview-card__more { font-size: 13px; font-weight: 700; color: var(--teal); }

@media (max-width: 768px) {
  .lp-inner, .lp-disclaimer { padding-left: 20px; padding-right: 20px; }
  .lp-section { padding: 40px 0; }
  .lp-section h2 { font-size: 22px; }
}
