/* ===== SERVICE PAGE LAYOUT ===== */
.service-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  grid-template-areas: "article sidebar";
  gap: 2.5rem;
  max-width: 1200px;
  margin: 120px auto 0;
  padding: 1.5rem 1rem 4rem;
  align-items: start;
}
.service-article { grid-area: article; min-width: 0; }
.service-sidebar  { grid-area: sidebar; position: sticky; top: 140px; }

/* ===== BREADCRUMB ===== */
.breadcrumb-nav  { background: #f8f8f8; padding: 0.6rem 1rem; font-size: 0.85rem; border-bottom: 1px solid #eee; }
.breadcrumb-list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.25rem 0.5rem; }
.breadcrumb-item + .breadcrumb-item::before { content: '›'; color: #aaa; }
.breadcrumb-item a { color: #007d8c; text-decoration: none; }
.breadcrumb-item a:hover { text-decoration: underline; }

/* ===== SECTIONS ===== */
.sec { padding: 2.5rem 0; border-bottom: 1px solid #f0f0f0; }
.sec:last-child { border-bottom: none; }
.sec h2 { color: #007d8c; font-size: 1.5rem; margin-bottom: 1rem; }
.sec h3 { font-size: 1.1rem; margin: 1.5rem 0 0.6rem; color: #333; }

/* ===== HERO ===== */
.sec--hero { border-bottom: none; padding-top: 2rem; }
.hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; }
.hero-text h1 { font-size: 1.8rem; line-height: 1.25; color: #222; margin-bottom: 0.75rem; }
.hero-subline { font-size: 1.05rem; color: #555; margin-bottom: 1.25rem; line-height: 1.6; }
.hero-banner-img { width: 100%; max-height: 420px; object-fit: cover; border-radius: 10px; margin-top: 1.5rem; display: block; }
.hero-banner-placeholder { width: 100%; height: 300px; background: #e8e8e8; border-radius: 10px; margin-top: 1.5rem; display: flex; align-items: center; justify-content: center; color: #aaa; font-size: 0.95rem; }
.trust-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.25rem; }
.trust-chip { background: #e8f6f7; color: #007d8c; border: 1px solid #b2dde2; border-radius: 20px; padding: 0.25rem 0.75rem; font-size: 0.82rem; font-weight: 500; white-space: nowrap; }
.hero-ctas { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.hero-image img { width: 100%; height: auto; border-radius: 12px; object-fit: cover; max-height: 380px; }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.6rem 1.5rem; border-radius: 6px; font-size: 1rem; font-weight: 500; text-decoration: none; cursor: pointer; border: 2px solid transparent; transition: background .15s, color .15s, border-color .15s; }
.btn--primary { background: #007d8c; color: #fff; border-color: #007d8c; }
.btn--primary:hover { background: #006470; border-color: #006470; color: #fff; }
.btn--ghost   { background: transparent; color: #007d8c; border-color: #007d8c; }
.btn--ghost:hover { background: #007d8c; color: #fff; }
.btn--lg   { padding: 0.75rem 2rem; font-size: 1.05rem; }
.btn--block { display: flex; justify-content: center; width: 100%; margin-bottom: 0.5rem; }

/* ===== ANSWER BOX ===== */
.answer-box { background: #f0f9fa; border-left: 4px solid #007d8c; border-radius: 8px; padding: 1.5rem; }
.answer-box__lead { margin-bottom: 1.25rem; line-height: 1.7; }
.facts-table { width: 100%; border-collapse: collapse; }
.facts-table th, .facts-table td { padding: 0.5rem 0.75rem; text-align: left; border-bottom: 1px solid #dde8e9; font-size: 0.95rem; }
.facts-table th { width: 48%; font-weight: 600; color: #444; }
.facts-table tr:last-child th, .facts-table tr:last-child td { border-bottom: none; }

/* ===== TOC ===== */
.sec--toc { background: #fafafa; border-radius: 8px; padding: 1.5rem; border: 1px solid #eee; }
.toc-summary { cursor: pointer; font-weight: 600; color: #007d8c; list-style: none; }
.toc-list { columns: 2; gap: 1rem; padding-left: 1.25rem; margin-top: 0.75rem; }
.toc-item { margin-bottom: 0.3rem; font-size: 0.9rem; }
.toc-item a { color: #007d8c; text-decoration: none; }
.toc-item a:hover { text-decoration: underline; }

/* ===== CHECKLISTS ===== */
.checklist { list-style: none; padding: 0; }
.checklist li { padding: 0.35rem 0 0.35rem 1.75rem; position: relative; }
.checklist--neutral li::before { content: '•'; color: #007d8c; position: absolute; left: 0.5rem; font-size: 1.1rem; }
.checklist--yes li::before { content: '✓'; color: #2e7d32; position: absolute; left: 0.25rem; font-weight: 700; }
.checklist--no  li::before { content: '✗'; color: #b71c1c; position: absolute; left: 0.25rem; font-weight: 700; }

/* ===== INFOBOX ===== */
.infobox { border-radius: 8px; padding: 1rem 1.25rem; margin: 1.25rem 0; }
.infobox strong { display: block; margin-bottom: 0.4rem; }
.infobox p { margin: 0; font-size: 0.92rem; }
.infobox--warning { background: #fff8e1; border-left: 4px solid #f9a825; }
.infobox--tip     { background: #e8f5e9; border-left: 4px solid #2e7d32; }
.infobox--neutral { background: #f5f5f5; border-left: 4px solid #9e9e9e; }
.infobox--glossar { background: #e8f6f7; border-left: 4px solid #007d8c; }
.glossar { margin: 0; }
.glossar dt { font-weight: 600; color: #007d8c; margin-top: 0.5rem; }
.glossar dd { margin-left: 0; color: #555; font-size: 0.9rem; }

/* ===== TABLES ===== */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 1rem 0; }
.compare-table, .risk-table, .price-table, .hours-table {
  width: 100%; border-collapse: collapse; font-size: 0.9rem; min-width: 480px;
}
.compare-table th, .risk-table th, .price-table th {
  background: #007d8c; color: #fff; padding: 0.6rem 0.75rem; text-align: left; white-space: nowrap;
}
.compare-table td, .risk-table td, .price-table td {
  padding: 0.6rem 0.75rem; border-bottom: 1px solid #eee; vertical-align: top;
}
.compare-table tr:nth-child(even) td, .risk-table tr:nth-child(even) td, .price-table tr:nth-child(even) td {
  background: #f9fafa;
}
.hours-table { min-width: 0; font-size: 0.9rem; }
.hours-table th { padding: 0.3rem 0.5rem; text-align: left; font-weight: 600; width: 55%; }
.hours-table td { padding: 0.3rem 0.5rem; }

/* ===== STEPS ===== */
.steps { list-style: none; padding: 0; counter-reset: steps; }
.step  { display: flex; gap: 1.25rem; padding: 1.25rem 0; border-bottom: 1px solid #f0f0f0; align-items: flex-start; }
.step:last-child { border-bottom: none; }
.step__num { width: 2.5rem; height: 2.5rem; border-radius: 50%; background: #007d8c; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1rem; font-weight: 700; flex-shrink: 0; }
.step__body { flex: 1; }
.step__title { margin: 0 0 0.3rem !important; font-size: 1rem; font-weight: 600; line-height: 2.5rem; }
.step__body p { margin: 0 0 0.4rem; color: #555; font-size: 0.95rem; }
.step__time { font-size: 0.82rem; color: #888; }

/* ===== BENEFIT GRID ===== */
.benefit-grid { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.benefit-card { background: #f0f9fa; border-radius: 10px; padding: 1.25rem; }
.benefit-card__icon { font-size: 1.8rem; color: #007d8c; margin-bottom: 0.5rem; display: block; }
.benefit-card__title { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.4rem; }
.benefit-card p { margin: 0; font-size: 0.88rem; color: #555; }

/* ===== SUITABILITY ===== */
.suitability { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.suitability__col h3 { margin-top: 0; }
.suitability__col--yes h3 { color: #2e7d32; }
.suitability__col--no  h3 { color: #555; }
.suitability__note { margin-top: 1.25rem; background: #f5f5f5; padding: 0.75rem 1rem; border-radius: 6px; font-size: 0.9rem; }

/* ===== COSTS CTA ===== */
.costs-cta { display: flex; gap: 1rem; margin-top: 1.5rem; flex-wrap: wrap; align-items: center; }
.costs-cta > p { margin: 0; font-weight: 600; }
.disclaimer { color: #888; font-size: 0.82rem; margin-top: 0.5rem; }
.alternativen-einordnung { margin-top: 1rem; font-size: 0.92rem; color: #555; }

/* ===== AUTHOR CARD ===== */
.author-card { display: flex; gap: 1.5rem; background: #f9fafa; border-radius: 12px; padding: 1.5rem; margin: 1rem 0 1.5rem; }
.author-card__img img { width: 140px; height: 140px; border-radius: 50%; object-fit: cover; border: 3px solid #007d8c; }
.author-placeholder { width: 140px; height: 140px; border-radius: 50%; background: #e0f0f2; display: flex; align-items: center; justify-content: center; font-size: 3rem; color: #007d8c; }
.author-card__body { flex: 1; }
.author-card__name { font-size: 1.15rem; font-weight: 700; margin: 0 0 0.15rem; }
.author-card__role { color: #007d8c; font-size: 0.9rem; margin: 0 0 0.75rem; }
.author-card__quali { padding-left: 1.2rem; font-size: 0.88rem; color: #555; margin: 0 0 0.75rem; }
.author-card__quali li { margin-bottom: 0.2rem; }
.quote--dentist { border-left: 3px solid #007d8c; padding-left: 1rem; margin: 0.75rem 0; font-style: italic; color: #555; }
.quote--dentist p { margin: 0 0 0.25rem; }
.quote--dentist cite { font-size: 0.85rem; color: #888; }
.author-card__link { font-size: 0.88rem; color: #007d8c; text-decoration: underline; }
.equipment-list { list-style: none; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.equipment-item { background: #f9fafa; border-radius: 8px; padding: 1rem; }
.equipment-item strong { display: block; color: #007d8c; margin-bottom: 0.3rem; font-size: 0.95rem; }
.equipment-item p { margin: 0; font-size: 0.88rem; color: #555; }
.map-consent { margin-top: 1.25rem; }
.map-consent__placeholder { background: #f5f5f5; border-radius: 8px; padding: 2rem; text-align: center; }
.map-consent__btn { margin: 0.5rem auto; }
.map-consent__info { font-size: 0.8rem; color: #888; margin-top: 0.5rem; }

/* ===== REVIEWS ===== */
.review-aggregate { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; background: #f9f9f9; padding: 1rem 1.25rem; border-radius: 8px; }
.review-aggregate__score { display: flex; align-items: center; gap: 0.75rem; }
.review-aggregate__stars .star { color: #f9a825; font-size: 1.4rem; }
.review-aggregate__count { font-size: 0.95rem; }
.review-aggregate__count strong { font-size: 1.4rem; color: #333; }
.review-list { display: flex; flex-direction: column; gap: 1rem; }
.review { background: #f9f9f9; border-radius: 10px; padding: 1.25rem; margin: 0; border: none; }
.review__stars { color: #f9a825; font-size: 1rem; margin-bottom: 0.4rem; }
.review__text { color: #444; font-style: italic; margin: 0 0 0.6rem; line-height: 1.6; }
.review__footer { font-size: 0.85rem; color: #888; }
.review__footer cite { font-style: normal; font-weight: 600; color: #555; }
.review__date { margin-left: 0.5rem; }
.review-link { display: inline-block; margin-top: 1rem; color: #007d8c; text-decoration: underline; font-size: 0.9rem; }

/* ===== FAQ ===== */
.faq-item { border-bottom: 1px solid #eee; }
.faq-item:first-child { border-top: 1px solid #eee; }
.faq-question { padding: 1rem 0; cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; }
.faq-question::after { content: '+'; font-size: 1.3rem; color: #007d8c; flex-shrink: 0; }
details[open] .faq-question::after { content: '−'; }
.faq-question h3 { margin: 0; font-size: 1rem; color: #333; font-weight: 600; }
.faq-answer { padding: 0 0 1rem; }
.faq-answer p { margin: 0; color: #555; line-height: 1.7; font-size: 0.95rem; }

/* ===== FINAL CTA ===== */
.cta-final { background: #007d8c; color: #fff; border-radius: 12px; border-bottom: none; }
.cta-final__inner { padding: 2.5rem; }
.cta-final h2, .cta-final h3 { color: #fff; }
.cta-final p { color: rgba(255,255,255,0.9); }
.cta-final .btn--primary { background: #fff; color: #007d8c; border-color: #fff; }
.cta-final .btn--primary:hover { background: #e0f0f2; border-color: #e0f0f2; }
.cta-final .btn--ghost { border-color: rgba(255,255,255,0.7); color: #fff; }
.cta-final .btn--ghost:hover { background: rgba(255,255,255,0.15); }
.cta-final__contacts { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.cta-final__form { background: rgba(255,255,255,0.1); border-radius: 8px; padding: 1.5rem; margin-bottom: 2rem; }
.callback-form { max-width: 480px; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; margin-bottom: 0.3rem; font-size: 0.9rem; color: rgba(255,255,255,0.9); }
.form-group input[type="text"],
.form-group input[type="tel"] { width: 100%; padding: 0.6rem 0.75rem; border: 1px solid rgba(255,255,255,0.4); border-radius: 6px; background: rgba(255,255,255,0.15); color: #fff; font-size: 1rem; box-sizing: border-box; }
.form-group input::placeholder { color: rgba(255,255,255,0.5); }
.form-group--check { display: flex; align-items: flex-start; gap: 0.5rem; }
.form-group--check input { flex-shrink: 0; margin-top: 0.2rem; }
.form-group--check label { font-size: 0.82rem; }
.form-group--check a { color: rgba(255,255,255,0.9); }
.cta-final__hours { margin-top: 1rem; }
.cta-final .hours-table { color: rgba(255,255,255,0.9); min-width: 0; }

/* ===== SIDEBAR ===== */
.sidebar-widget { background: #fff; border-radius: 10px; border: 1px solid #e8e8e8; padding: 1.25rem; margin-bottom: 1.25rem; }
.sidebar-widget h3 { margin-top: 0; font-size: 1rem; color: #333; border-bottom: 2px solid #007d8c; padding-bottom: 0.5rem; margin-bottom: 1rem; }
.sidebar-widget__hours small { display: block; color: #666; font-size: 0.8rem; margin-top: 0.25rem; line-height: 1.4; }
.sidebar-trust-score { display: flex; flex-direction: column; align-items: center; gap: 0.2rem; margin-bottom: 0.75rem; text-align: center; }
.sidebar-stars { color: #f9a825; font-size: 1.3rem; }
.sidebar-trust-list { list-style: none; padding: 0; font-size: 0.85rem; }
.sidebar-trust-list li { padding: 0.2rem 0; color: #555; }
.sidebar-trust-list .fa-check { color: #2e7d32; margin-right: 0.4rem; }
.sidebar-behandler-foto { width: 100%; height: auto; border-radius: 8px; display: block; margin-bottom: 0.75rem; }
.sidebar-behandler-name { margin: 0.25rem 0 0.1rem; font-size: 0.95rem; }
.sidebar-behandler-role { margin: 0; font-size: 0.85rem; color: #666; line-height: 1.4; }
.sidebar-vorteile-list { list-style: none; padding: 0; margin: 0; }
.sidebar-vorteile-list li { padding: 0.35rem 0; font-size: 0.9rem; color: #444; border-bottom: 1px solid #f0f0f0; }
.sidebar-vorteile-list li:last-child { border-bottom: none; }
.sidebar-vorteile-list li::before { content: "✓"; color: #007d8c; font-weight: 700; margin-right: 0.5rem; }
.sidebar-related-list { list-style: none; padding: 0; }
.sidebar-related-list li { border-bottom: 1px solid #f0f0f0; }
.sidebar-related-list li:last-child { border-bottom: none; }
.sidebar-related-list a { display: block; padding: 0.4rem 0; font-size: 0.9rem; color: #007d8c; text-decoration: none; }
.sidebar-related-list a:hover { text-decoration: underline; }

/* ===== STICKY CTA MOBILE ===== */
.sticky-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000; background: #fff; border-top: 1px solid #ddd; padding: 0.75rem 1rem; padding-bottom: calc(0.75rem + env(safe-area-inset-bottom)); display: none; gap: 0.75rem; }
.sticky-cta .btn { flex: 1; justify-content: center; }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .service-layout { grid-template-columns: 1fr; grid-template-areas: "article" "sidebar"; gap: 1.5rem; }
  .service-sidebar { position: static; }
  .hero-content { grid-template-columns: 1fr; }
  .hero-image { order: -1; }
  .hero-image img { max-height: 240px; }
  .benefit-grid { grid-template-columns: 1fr 1fr; }
  .equipment-list { grid-template-columns: 1fr; }
  .suitability { grid-template-columns: 1fr; }
  .toc-list { columns: 1; }
}

@media (max-width: 768px) {
  .service-layout { padding: 0 0.75rem 5rem; }
  body { padding-bottom: 64px; }
  .sticky-cta { display: flex; }
  .hero-text h1 { font-size: 1.4rem; }
  .benefit-grid { grid-template-columns: 1fr; }
  .author-card { flex-direction: column; }
  .author-card__img img { width: 100px; height: 100px; }
  .cta-final__contacts { flex-direction: column; }
  .cta-final__contacts .btn { width: 100%; justify-content: center; }
  .compare-table, .risk-table, .price-table { min-width: 560px; }
}
