.-/* ================================================================
   USM Büroservice Ortner — Gemeinsames Stylesheet
   Für Shopify: <link rel="stylesheet" href="{{ 'usm-styles.css' | asset_url }}">
   Lokal:       <link rel="stylesheet" href="usm-styles.css">  (Root)
                <link rel="stylesheet" href="../usm-styles.css"> (Unterordner)
   ================================================================ */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ── Base ── */
body {
  font-family: 'Work Sans', sans-serif;
  background: #ffffff;
  color: #110811;
  padding: 0 16px 40px;
  font-size: 15px;
  line-height: 1.6;
}
.page { max-width: 1280px; margin: 0 auto; }

/* ════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #ffffff;
  border-bottom: 1px solid #e8e8e8;
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo img {
  display: block;
  height: 59px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin-left: auto;
}
.nav-links > li { position: relative; }
.nav-links > li > a,
.nav-links > li > button {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 16px;
  height: 60px;
  font-family: 'Work Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: rgba(17, 8, 17, 0.7);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  letter-spacing: 0.1px;
  transition: color 0.15s;
  white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li > button:hover,
.nav-links > li.open > button { color: #442243; }
.nav-links > li > a.active,
.nav-links > li > a.nav-active { color: #442243; font-weight: 600; }
.caret { font-size: 9px; opacity: 0.5; transition: transform 0.2s; }
.nav-links > li.open .caret { transform: rotate(180deg); opacity: 1; }
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-top: 2px solid #442243;
  box-shadow: 0 8px 24px rgba(17,8,17,0.08);
  list-style: none;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 300;
}
.nav-links > li.open .nav-dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.nav-dropdown li a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 20px;
  text-decoration: none;
  border-bottom: 1px solid #f2f2f2;
  transition: background 0.12s;
}
.nav-dropdown li:last-child a { border-bottom: none; }
.nav-dropdown li a:hover { background: #faf5fa; }
.nav-dropdown-icon {
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
  color: #442243;
  width: 20px;
  text-align: center;
}
.nav-dropdown-text { flex: 1; }
.nav-dropdown-title {
  font-family: 'Work Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #110811;
  line-height: 1.3;
  display: block;
}
.nav-dropdown-desc {
  font-family: 'Work Sans', sans-serif;
  font-size: 11px;
  color: rgba(17,8,17,0.5);
  line-height: 1.4;
  display: block;
  margin-top: 2px;
}
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #110811;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile {
  display: none;
  background: #fff;
  border-top: 1px solid #e8e8e8;
  padding: 12px 0 20px;
}
.nav-mobile.open { display: block; }
.nav-mobile a, .nav-mobile-group-title {
  display: block;
  padding: 11px 24px;
  font-family: 'Work Sans', sans-serif;
  font-size: 14px;
  color: #110811;
  text-decoration: none;
  border-bottom: 1px solid #f2f2f2;
}
.nav-mobile-group-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #442243;
  background: #faf5fa;
  padding: 10px 24px;
  border-bottom: none;
  margin-top: 4px;
}
.nav-mobile a:hover { background: #faf5fa; }

/* ── Nav Contact Icons ── */
.nav-contact {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  margin-right: 16px;
}
.nav-contact-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: rgba(17,8,17,0.55);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.nav-contact-link:hover {
  background: #f2ecf2;
}
.nav-contact-link img {
  display: block;
  width: 26px;
  height: 26px;
  opacity: 0.5;
  transition: opacity 0.15s, filter 0.15s;
}
.nav-contact-link:hover img {
  opacity: 1;
  filter: invert(18%) sepia(40%) saturate(800%) hue-rotate(265deg) brightness(80%);
}

/* ── Tablet Nav ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-contact { margin-right: 8px; }
}

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.site-footer {
  background: #f9f5f9;
  border-top: 1px solid #e0d5e0;
  padding: 56px 0 32px;
  margin-top: 80px;
  font-family: 'Work Sans', sans-serif;
}
.site-footer-inner {
  max-width:1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-logo-img {
  display: block;
  height: 59px;
  width: auto;
  margin-bottom: 4px;
}
.footer-logo-sub {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #442243;
  margin-bottom: 20px;
}
.footer-tagline {
  font-size: 15px;
  color: rgba(17,8,17,0.5);
  line-height: 1.7;
}
.footer-col-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  color: rgba(17,8,17,0.45);
  margin-bottom: 18px;
}
.footer-contact p {
  font-size: 15px;
  color: rgba(17,8,17,0.7);
  line-height: 1.8;
  margin-bottom: 2px;
}
.footer-contact a {
  font-size: 13px;
  color: rgba(17,8,17,0.7);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-contact a:hover { color: #442243; }
.footer-sitemap ul { list-style: none; }
.footer-sitemap ul li { margin-bottom: 10px; }
.footer-sitemap ul li a {
  font-size: 13px;
  color: rgba(17,8,17,0.7);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-sitemap ul li a:hover { color: #442243; }
.footer-sitemap .sitemap-sub {
  padding-left: 14px;
  border-left: 2px solid #e0dfdc;
  margin-top: 6px;
  margin-bottom: 6px;
}
.footer-sitemap .sitemap-sub li { margin-bottom: 6px; }
.footer-sitemap .sitemap-sub li a {
  font-size: 13px;
  color: rgba(17,8,17,0.5);
}
.footer-bottom-bar {
  max-width: 1080px;
  margin: 40px auto 0;
  padding: 20px 24px 0;
  border-top: 1px solid #e0d5e0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom-bar p {
  font-size: 11px;
  color: rgba(17,8,17,0.35);
}
.footer-bottom-bar a {
  font-size: 11px;
  color: rgba(17,8,17,0.4);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-bottom-bar a:hover { color: #442243; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-partners ul { list-style: none; }
.footer-partners ul li { margin-bottom: 14px; }
.footer-partners ul li a {
  font-size: 13px;
  font-weight: 600;
  color: rgba(17,8,17,0.75);
  text-decoration: none;
  transition: color 0.15s;
  display: block;
}
.footer-partners ul li a:hover { color: #442243; }
.footer-partners ul li span {
  display: block;
  font-size: 11px;
  color: rgba(17,8,17,0.4);
  margin-top: 2px;
}

/* ════════════════════════════════════════
   GEMEINSAME INHALTS-KOMPONENTEN
════════════════════════════════════════ */

/* ── Hero ── */
.hero {
  padding: 56px 0 48px;
  margin-bottom: 0px;
  border-bottom: 1px solid #e8e8e8;
}
.hero-label {
  font-family: 'Work Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #442243;
  margin-bottom: 18px;
}
.hero h1 {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 48px;
  font-weight: 400;
  color: #110811;
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero p {
  font-family: 'Work Sans', sans-serif;
  font-size: 19px;
  color: rgba(17, 8, 17, 0.65);
  line-height: 1.75;
  max-width: 540px;
}

/* ── Steps ── */
.steps-title {
  font-family: 'Work Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(17, 8, 17, 0.45);
  margin-bottom: 20px;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 56px;
  border: 1px solid #e8e8e8;
}
.step-card {
  padding: 28px 24px;
  border-right: 1px solid #e8e8e8;
}
.step-card:last-child { border-right: none; }
.step-num {
  width: 28px;
  height: 28px;
  background: #442243;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Work Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #f4f0f4;
  margin-bottom: 14px;
}
.step-card h3 {
  font-family: 'Work Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #110811;
  margin-bottom: 8px;
}
.step-card p {
  font-family: 'Work Sans', sans-serif;
  font-size: 16px;
  color: rgba(17, 8, 17, 0.6);
  line-height: 1.7;
}

/* ── Rechner iframe ── */
.rechner-wrap { margin-bottom: 56px; }
.rechner-label {
  font-family: 'Work Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #442243;
  margin-bottom: 14px;
}
.rechner-frame {
  width: 100%;
  border: 1px solid #e8e8e8;
  border-radius: 0;
  display: block;
  transition: height .3s ease;
}

/* ── Vorteile ── */
.vorteile-title {
  font-family: 'Work Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(17, 8, 17, 0.45);
  margin-bottom: 20px;
}
.vorteile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 56px;
  border: 1px solid #e8e8e8;
}
.vorteil {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  border-right: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
}
.vorteil:nth-child(2n) { border-right: none; }
.vorteil-icon {
  font-size: 18px;
  flex-shrink: 0;
  line-height: 1.3;
  color: #442243;
}
.vorteil h4 {
  font-family: 'Work Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #110811;
}
.vorteil p {
  font-family: 'Work Sans', sans-serif;
  font-size: 15px;
  color: rgba(17, 8, 17, 0.6);
  line-height: 1.7;
}

/* ── FAQ ── */
.faq { margin-bottom: 56px; }
.faq > h2 {
  font-family: 'Work Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(17, 8, 17, 0.45);
  margin-bottom: 20px;
}
.faq-item {
  border-bottom: 1px solid #e8e8e8;
  padding: 20px 0;
}
.faq-item:first-of-type { border-top: 1px solid #e8e8e8; }
.faq-item h4 {
  font-family: 'Work Sans', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #110811;
  margin-bottom: 8px;
}
.faq-item p {
  font-family: 'Work Sans', sans-serif;
  font-size: 17px;
  color: rgba(17, 8, 17, 0.6);
  line-height: 1.8;
}

/* ── CTA-Block ── */
.cta {
  background: #f9f5f9;
  border: 1px solid #e0d5e0;
  padding: 40px;
  text-align: center;
}
.cta h2 {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 30px;
  font-weight: 400;
  color: #110811;
  margin-bottom: 12px;
}
.cta p {
  font-family: 'Work Sans', sans-serif;
  font-size: 16px;
  color: rgba(17, 8, 17, 0.65);
  margin-bottom: 28px;
  line-height: 1.75;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}
.cta-btn {
  display: inline-block;
  background: #442243;
  color: #f4f0f4;
  font-family: 'Work Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  padding: 14px 32px;
  border-radius: 0;
  text-decoration: none;
  letter-spacing: 0.2px;
  transition: background 0.2s;
}
.cta-btn:hover { background: #331832; }
.cta-note {
  font-family: 'Work Sans', sans-serif;
  font-size: 14px;
  color: rgba(17, 8, 17, 0.4);
  margin-top: 16px;
}

/* ── Info-Box ── */
.info-box {
  background: #f9f5f9;
  border: 1px solid #e0d5e0;
  padding: 16px 20px;
  margin-bottom: 24px;
  font-family: 'Work Sans', sans-serif;
  font-size: 17px;
  color: rgba(17,8,17,0.7);
  line-height: 1.7;
}
.info-box p { margin-bottom: 6px; }
.info-box p:last-child { margin-bottom: 0; }

/* ── Breadcrumb ── */
.breadcrumb {
  font-family: 'Work Sans', sans-serif;
  font-size: 12px;
  color: rgba(17,8,17,0.4);
  margin-bottom: 32px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.breadcrumb a {
  color: rgba(17,8,17,0.5);
  text-decoration: none;
  transition: color 0.15s;
}
.breadcrumb a:hover { color: #442243; }
.breadcrumb span { color: rgba(17,8,17,0.3); }

/* ── Artikel-Stile (Blog) ── */
.article-header {
  padding: 48px 0 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #e8e8e8;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.article-tag {
  font-family: 'Work Sans', sans-serif;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #442243;
  background: #f4eef4;
  border: 1px solid #e0d5e0;
  padding: 3px 8px;
}
.article-header h1 {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 42px;
  font-weight: 400;
  color: #110811;
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 18px;
}
.article-header .lead {
  font-family: 'Work Sans', sans-serif;
  font-size: 16px;
  color: rgba(17,8,17,0.65);
  line-height: 1.75;
  max-width: 580px;
}
.article-body h2 {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 26px;
  font-weight: 400;
  color: #110811;
  margin: 40px 0 14px;
  letter-spacing: -0.3px;
}
.article-body h3 {
  font-family: 'Work Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #110811;
  margin: 28px 0 10px;
}
.article-body p {
  font-size: 14px;
  color: rgba(17,8,17,0.75);
  line-height: 1.85;
  margin-bottom: 18px;
}
.article-body ul, .article-body ol {
  padding-left: 20px;
  margin-bottom: 18px;
}
.article-body li {
  font-size: 14px;
  color: rgba(17,8,17,0.75);
  line-height: 1.85;
  margin-bottom: 6px;
}
.back-link {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid #e8e8e8;
}
.back-link a {
  font-family: 'Work Sans', sans-serif;
  font-size: 13px;
  color: #442243;
  text-decoration: none;
}
.back-link a:hover { text-decoration: underline; }

/* ── Artikel-Body Breite ── */
.article-body { max-width: 660px; }

/* ── Artikel-Tabelle ── */
.article-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 24px;
  font-size: 13px;
}
.article-table th {
  background: #f9f5f9;
  border: 1px solid #e0d5e0;
  padding: 10px 16px;
  text-align: left;
  font-weight: 700;
  color: #442243;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.article-table td {
  border: 1px solid #e8e8e8;
  padding: 10px 16px;
  color: rgba(17,8,17,0.75);
  line-height: 1.5;
}
.article-table tr:nth-child(even) td { background: #fafafa; }

/* ── Content-Box (Highlight-Bereich, lila Variante) ── */
.content-box {
  background: #f9f5f9;
  border: 1px solid #e0d5e0;
  padding: 28px 32px;
  margin-bottom: 56px;
}
.content-box-label {
  font-family: 'Work Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #442243;
  margin-bottom: 16px;
}
.content-box h2 {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #110811;
  margin-bottom: 10px;
}
.content-box h3 {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #110811;
  margin-bottom: 8px;
}
.content-box p {
  font-family: 'Work Sans', sans-serif;
  font-size: 17px;
  color: rgba(17, 8, 17, 0.65);
  line-height: 1.8;
}
.content-box-flex {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.content-box-icon {
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
  color: #442243;
}

/* ── Trust-Bar Items (gemeinsam) ── */
.trust-item {
  padding: 24px 20px;
  border-right: 1px solid #e8e8e8;
  text-align: center;
}
.trust-item:last-child { border-right: none; }
.trust-value {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: #442243;
  letter-spacing: -0.5px;
  line-height: 1;
  margin-bottom: 6px;
}
.trust-label {
  font-family: 'Work Sans', sans-serif;
  font-size: 12px;
  color: rgba(17, 8, 17, 0.55);
  line-height: 1.5;
}

/* ── Section-Label (gemeinsam) ── */
.section-label {
  font-family: 'Work Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(17, 8, 17, 0.45);
  margin-bottom: 20px;
}

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 900px) {
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .step-card:nth-child(2) { border-right: none; }
  .vorteile-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .site-footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .site-footer { margin-top: 48px; }
  .footer-bottom-bar { flex-direction: column; align-items: flex-start; gap: 8px; }
}

@media (max-width: 640px) {
  .hero { padding: 36px 0 32px; margin-bottom: 40px; }
  .hero h1 { font-size: 30px; line-height: 1.15; }
  .hero p { font-size: 15px; max-width: 100%; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-card { border-right: none; border-bottom: 1px solid #e8e8e8; padding: 24px 20px; }
  .step-card:last-child { border-bottom: none; }
  .vorteile-grid { grid-template-columns: 1fr; }
  .vorteil { border-right: none; border-bottom: 1px solid #e8e8e8; padding: 20px 16px; }
  .vorteil:last-child { border-bottom: none; }
  .cta { padding: 28px 20px; }
  .cta h2 { font-size: 22px; }
  .cta-actions { flex-direction: column; gap: 10px; }
  .cta-actions a { width: 100%; text-align: center; box-sizing: border-box; padding: 14px; }
  .article-header { padding: 36px 0 32px; }
  .article-header h1 { font-size: 26px; line-height: 1.2; }
  .content-box { padding: 20px 16px; }
  .content-box-flex { flex-direction: column; gap: 12px; }
}

@media (max-width: 600px) {
  body { padding: 0 0 40px; }
  .page { padding: 0 16px; }
  .nav-inner { padding: 0 16px; }
  .site-footer-inner { padding: 0 16px; grid-template-columns: 1fr; gap: 24px; }
  .footer-logo-col { grid-column: 1 / -1; }
  .site-footer { padding: 40px 0 24px; margin-top: 40px; }
  .footer-bottom-bar { flex-direction: column; align-items: flex-start; gap: 8px; }
  .hero-illustration { padding: 16px; }
}

/* ── Hero Illustration ── */
.hero-illustration {
  margin-top: 36px;
  border: 1px solid #e8e8e8;
  background: #fafafa;
  padding: 0px;
  overflow: hidden;
}
.hero-illustration img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 300px;
  margin: 0;
}

/* ── SVG Icons (zentral skalierbar) ── */
.dienst-icon-img {
  display: block;
  width: 100px;
  height: auto;
}
.nav-icon-img {
  display: inline-block;
  width: 30px;
  height: auto;
  vertical-align: middle;
  margin: -5px;
}
.content-icon-img {
  display: block;
  width: 36px;
  height: auto;
}

/* ════════════════════════════════════════
   AGB-SEITE
════════════════════════════════════════ */

.hero-meta {
  font-size: 19px;
  color: rgba(17, 8, 17, 0.5);
  line-height: 1.7;
}

/* ── Inhaltsverzeichnis ── */
.toc {
  background: #fafafa;
  border: 1px solid #e8e8e8;
  padding: 28px 32px;
  margin-bottom: 56px;
}
.toc-label {
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(17, 8, 17, 0.4);
  margin-bottom: 16px;
}
.toc ol {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 32px;
}
.toc li {
  padding: 7px 0;
  border-bottom: 1px solid #eeeeee;
  display: flex;
  gap: 12px;
  align-items: baseline;
}
.toc li:last-child, .toc li:nth-last-child(2):nth-child(odd) { border-bottom: none; }
.toc-num {
  font-size: 11px;
  font-weight: 700;
  color: #442243;
  flex-shrink: 0;
  width: 18px;
}
.toc a {
  font-size: 17px;
  color: #110811;
  text-decoration: none;
  line-height: 1.5;
}
.toc a:hover { color: #442243; text-decoration: underline; }
.toc a.active { color: #442243; font-weight: 600; }
.toc li.active .toc-num {
  background: #442243;
  color: #fff;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

/* ── AGB Sektionen ── */
.agb-section {
  margin-bottom: 52px;
  scroll-margin-top: 24px;
}
.agb-section-header {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding-bottom: 14px;
  margin-bottom: 24px;
  border-bottom: 2px solid #442243;
}
.agb-num {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #442243;
  flex-shrink: 0;
  line-height: 1;
}
.agb-section h2 {
  font-family: 'Work Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #110811;
}
.agb-sub { margin-bottom: 24px; }
.agb-sub h3 {
  font-family: 'Work Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: rgba(17, 8, 17, 0.55);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.agb-sub p, .agb-section > p {
  font-size: 17px;
  color: rgba(17, 8, 17, 0.78);
  line-height: 1.9;
  margin-bottom: 14px;
}
.agb-sub p:last-child, .agb-section > p:last-child { margin-bottom: 0; }

/* ── Warnung-Box ── */
.warn-box {
  background: #fff8f0;
  border: 1px solid #e8d8c0;
  border-left: 3px solid #c87800;
  padding: 16px 20px;
  margin: 20px 0;
}
.warn-box p {
  font-size: 17px !important;
  color: rgba(17, 8, 17, 0.7) !important;
  line-height: 1.75 !important;
  margin: 0 !important;
}

/* ── Zahlungsarten ── */
.zahlung-pills { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0 20px; }
.zahlung-pill {
  display: inline-block;
  padding: 5px 14px;
  background: #f9f5f9;
  border: 1px solid #e0d5e0;
  font-size: 12px;
  font-weight: 600;
  color: #442243;
  letter-spacing: 0.3px;
}

/* ── AGB Footer ── */
.agb-footer {
  border-top: 1px solid #e8e8e8;
  padding-top: 28px;
  margin-top: 56px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}
.agb-footer p { font-size: 12px; color: rgba(17, 8, 17, 0.45); line-height: 1.7; }
.agb-footer strong { font-weight: 600; color: rgba(17, 8, 17, 0.6); }
.back-top {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #442243;
  text-decoration: none;
  flex-shrink: 0;
}
.back-top:hover { color: #331832; }

/* ── Floating «Nach oben»-Button ── */
.fab-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: #442243;
  color: #f4f0f4;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-family: 'Work Sans', sans-serif;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s;
  pointer-events: none;
  z-index: 100;
  box-shadow: 0 4px 16px rgba(68, 34, 67, 0.25);
}
.fab-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.fab-top:hover { background: #331832; }

@media (max-width: 640px) {
  .toc { padding: 20px 16px; }
  .toc ol { grid-template-columns: 1fr; gap: 6px; }
  .toc li a { font-size: 13px; padding: 8px 0; }
  .agb-section { padding: 28px 0; }
  .agb-section h2 { font-size: 20px; }
  .agb-section p, .agb-section li { font-size: 14px; }
  .agb-footer { flex-direction: column; gap: 12px; padding: 20px 16px; }
  .agb-footer p { font-size: 13px; }
  .fab-top { bottom: 20px; right: 16px; width: 40px; height: 40px; font-size: 16px; }
}

/* ============================================================
   INDEX / HOMEPAGE
   ============================================================ */
  /* ── Hero (Homepage) ── */
  .hero-eyebrow {
    font-family: 'Work Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #442243;
    margin-bottom: 20px;
  }
  .hero-sub {
    font-family: 'Work Sans', sans-serif;
    font-size: 17px;
    color: rgba(17, 8, 17, 0.65);
    line-height: 1.75;
    max-width: 520px;
    margin-bottom: 32px;
  }
  .hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }
  .btn-primary {
    display: inline-block;
    background: #442243;
    color: #f4f0f4;
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: 13px 28px;
    text-decoration: none;
    letter-spacing: 0.2px;
    transition: background 0.2s;
  }
  .btn-primary:hover { background: #331832; }
  .btn-ghost {
    display: inline-block;
    background: transparent;
    color: #442243;
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: 13px 28px;
    border: 1px solid #442243;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
  }
  .btn-ghost:hover { background: #f9f5f9; }

  /* ── Dienstleistungen-Grid ── */
  .dienst-section { margin-bottom: 64px; }
  .dienst-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid #e8e8e8;
  }
  .dienst-card {
    padding: 32px 28px;
    border-right: 1px solid #e8e8e8;
  }
  .dienst-card:last-child { border-right: none; }
  .dienst-icon {
    margin-bottom: 14px;
    line-height: 1;
  }
  .dienst-num {
    font-family: 'Work Sans', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: rgba(17,8,17,0.3);
    letter-spacing: 1.5px;
    margin-bottom: 10px;
  }
  .dienst-card h3 {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 22px;
    font-weight: 400;
    color: #110811;
    margin-bottom: 10px;
  }
  .dienst-card p {
    font-family: 'Work Sans', sans-serif;
    font-size: 15px;
    color: rgba(17,8,17,0.6);
    line-height: 1.75;
    margin-bottom: 18px;
  }
  .dienst-link {
    font-family: 'Work Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #442243;
    text-decoration: none;
    transition: opacity 0.15s;
  }
  .dienst-link:hover { opacity: 0.7; }

  /* ── Trust Bar ── */
  .trust-section { margin-bottom: 64px; }
  .trust-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid #e8e8e8;
  }
  /* trust-item/label from usm-styles.css; only override font-size for homepage */
  .trust-value { font-size: 32px; margin-bottom: 8px; }

  /* ── Info-Streifen ── */
  .info-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid #e8e8e8;
    margin-bottom: 64px;
  }
  .info-strip-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 28px;
    text-decoration: none;
    color: inherit;
    border-right: 1px solid #e8e8e8;
    transition: background 0.15s;
  }
  .info-strip-item:last-child { border-right: none; }
  .info-strip-item:hover { background: #faf5fa; }
  .info-strip-icon {
    font-size: 28px;
    flex-shrink: 0;
    line-height: 1;
  }
  .info-strip-item h3 {
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #110811;
    margin-bottom: 5px;
  }
  .info-strip-item p {
    font-family: 'Work Sans', sans-serif;
    font-size: 15px;
    color: rgba(17,8,17,0.55);
    line-height: 1.6;
  }
  .info-strip-arrow {
    margin-left: auto;
    font-size: 18px;
    color: #442243;
    flex-shrink: 0;
  }

  /* ── CTA Banner ── */
  .cta-banner {
    background: #442243;
    padding: 48px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 0;
  }
  .cta-banner h2 {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 32px;
    font-weight: 400;
    color: #f4f0f4;
    line-height: 1.2;
    margin-bottom: 10px;
  }
  .cta-banner p {
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    color: rgba(244,240,244,0.7);
    line-height: 1.75;
    max-width: 420px;
  }
  .btn-white {
    display: inline-block;
    background: #f4f0f4;
    color: #442243;
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 14px 28px;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.2s;
  }
  .btn-white:hover { background: #ffffff; }
  .cta-banner-visual {
    flex-shrink: 0;
    opacity: 0.85;
    align-self: center;
  }

  /* ── Hero Split Layout ── */
  .hero-split {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 56px;
    align-items: center;
    padding: 64px 0 56px;
    margin-bottom: 64px;
    border-bottom: 1px solid #e8e8e8;
  }
  .hero-split-visual {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .hero-split-visual img {
    width: 100%;
    max-width: 300px;
    height: auto;
    display: block;
    border: 1px solid #e8e8e8;
    background: #fafafa;
  }

  /* ── Über uns ── */
  .ueber-uns-section {
    margin-bottom: 64px;
  }
  .ueber-uns-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid #e8e8e8;
  }
  .ueber-uns-text {
    padding: 48px 40px;
    border-right: 1px solid #e8e8e8;
  }
  .ueber-uns-text h2 {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 32px;
    font-weight: 400;
    color: #110811;
    letter-spacing: -0.3px;
    line-height: 1.2;
    margin-bottom: 16px;
  }
  .ueber-uns-text p {
    font-family: 'Work Sans', sans-serif;
    font-size: 15px;
    color: rgba(17,8,17,0.65);
    line-height: 1.8;
    margin-bottom: 12px;
  }
  .ueber-uns-text p:last-child { margin-bottom: 0; }
  .ueber-uns-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
  }
  .ueber-uns-fact {
    padding: 28px 28px;
    border-bottom: 1px solid #e8e8e8;
    border-right: 1px solid #e8e8e8;
  }
  .ueber-uns-fact:nth-child(2n) { border-right: none; }
  .ueber-uns-fact:nth-last-child(-n+2) { border-bottom: none; }
  .ueber-uns-fact-val {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 30px;
    font-weight: 600;
    color: #442243;
    letter-spacing: -0.5px;
    line-height: 1;
    margin-bottom: 6px;
  }
  .ueber-uns-fact-label {
    font-family: 'Work Sans', sans-serif;
    font-size: 13px;
    color: rgba(17,8,17,0.55);
    line-height: 1.5;
  }

  /* ── Kundenstimmen ── */
  .kundenstimmen-section {
    margin-bottom: 64px;
  }
  .kundenstimmen-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid #e8e8e8;
  }
  .kundenstimmen-card {
    padding: 32px 28px;
    border-right: 1px solid #e8e8e8;
    display: flex;
    flex-direction: column;
  }
  .kundenstimmen-card:last-child { border-right: none; }
  .kundenstimmen-stars {
    color: #442243;
    font-size: 13px;
    letter-spacing: 3px;
    margin-bottom: 18px;
  }
  .kundenstimmen-text {
    font-family: 'Work Sans', sans-serif;
    font-size: 15px;
    color: rgba(17,8,17,0.72);
    line-height: 1.8;
    flex: 1;
    margin-bottom: 28px;
  }
  .kundenstimmen-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid #e8e8e8;
  }
  .kundenstimmen-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f4eef4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Instrument Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #442243;
    flex-shrink: 0;
  }
  .kundenstimmen-name {
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #110811;
    line-height: 1.3;
  }
  .kundenstimmen-role {
    font-family: 'Work Sans', sans-serif;
    font-size: 12px;
    color: rgba(17,8,17,0.45);
    margin-top: 2px;
  }

  /* ── Info-Strip SVG icons ── */
  .info-strip-svg {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    color: #442243;
  }

  /* ── Responsive (Homepage spezifisch) ── */
  @media (max-width: 1100px) {
    .hero-split { grid-template-columns: 1fr 280px; gap: 40px; }
    .dienst-grid { grid-template-columns: 1fr 1fr; }
    .dienst-card:nth-child(2n) { border-right: none; }
    .dienst-card:nth-child(2n+1) { border-right: 1px solid #e8e8e8; }
    .dienst-card:nth-last-child(-n+2) { border-bottom: none; }
    .dienst-card { border-bottom: 1px solid #e8e8e8; }
  }

  @media (max-width: 900px) {
    .hero-split { grid-template-columns: 1fr; gap: 0; }
    .hero-split-visual { display: none; }
    .trust-bar { grid-template-columns: 1fr 1fr; }
    .trust-item:nth-child(2n) { border-right: none; }
    .info-strip { grid-template-columns: 1fr; }
    .info-strip-item { border-right: none; border-bottom: 1px solid #e8e8e8; }
    .info-strip-item:last-child { border-bottom: none; }
    .cta-banner { flex-direction: column; gap: 24px; padding: 40px 32px; }
    .kundenstimmen-grid { grid-template-columns: 1fr; }
    .kundenstimmen-card { border-right: none; border-bottom: 1px solid #e8e8e8; }
    .kundenstimmen-card:last-child { border-bottom: none; }
    .ueber-uns-inner { grid-template-columns: 1fr; }
    .ueber-uns-text { border-right: none; border-bottom: 1px solid #e8e8e8; }
  }

  @media (max-width: 600px) {
    /* Nav */
    .nav-inner { padding: 0 16px; }

    /* Hero */
    .hero-split { padding: 40px 0 36px; margin-bottom: 48px; }
    .hero-split h1 { font-size: 32px; letter-spacing: -0.5px; line-height: 1.15; }
    .hero-sub { font-size: 15px; }
    .hero-actions { flex-direction: column; align-items: flex-start; gap: 10px; }
    .hero-actions .btn-primary,
    .hero-actions .btn-ghost { width: 100%; text-align: center; box-sizing: border-box; }

    /* Dienstleistungen */
    .dienst-section { margin-bottom: 48px; }
    .dienst-grid { grid-template-columns: 1fr; }
    .dienst-card { border-right: none; border-bottom: 1px solid #e8e8e8; padding: 28px 20px; }
    .dienst-card:nth-child(2n+1) { border-right: none; }
    .dienst-card:nth-last-child(-n+2) { border-bottom: 1px solid #e8e8e8; }
    .dienst-card:last-child { border-bottom: none; }

    /* Trust */
    .trust-section { margin-bottom: 48px; }
    .trust-bar { grid-template-columns: 1fr 1fr; }
    .trust-item { padding: 20px 16px; }
    .trust-num { font-size: 28px; }

    /* Info strip */
    .info-strip { grid-template-columns: 1fr; }
    .info-strip-item { border-right: none; border-bottom: 1px solid #e8e8e8; padding: 24px 20px; }
    .info-strip-item:last-child { border-bottom: none; }

    /* CTA Banner */
    .cta-banner { padding: 32px 20px; flex-direction: column; gap: 20px; }
    .cta-banner h2 { font-size: 24px; }
    .btn-white { width: 100%; text-align: center; box-sizing: border-box; }
    .cta-banner-visual { display: none; }

    /* Über uns */
    .ueber-uns-text { padding: 28px 20px; }
    .ueber-uns-text h2 { font-size: 24px; }
    .ueber-uns-fact { padding: 20px 16px; }

    /* Kundenstimmen */
    .kundenstimmen-card { padding: 28px 20px; }

    /* Footer */
    .site-footer-inner { grid-template-columns: 1fr; gap: 28px; padding: 0 16px; }
    .footer-logo-col { grid-column: 1 / -1; }
    .site-footer { padding: 40px 0 24px; }
    .footer-bottom-bar { flex-direction: column; align-items: flex-start; gap: 8px; }
    .footer-bottom-links { flex-wrap: wrap; gap: 12px; }
  }

/* ============================================================
   BLOG ÜBERSICHT
   ============================================================ */
  /* ── Blog-Karten ── */
  .blog-list {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .blog-card {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: start;
    gap: 24px;
    padding: 36px 0;
    border-bottom: 1px solid #e8e8e8;
    text-decoration: none;
    color: inherit;
    transition: background 0.15s;
  }
  .blog-card:first-child { border-top: 1px solid #e8e8e8; }
  .blog-card:hover .blog-card-title { color: #442243; }
  .blog-meta {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(17,8,17,0.4);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .blog-tag {
    display: inline-block;
    padding: 3px 10px;
    background: #f9f5f9;
    border: 1px solid #e0d5e0;
    font-size: 10px;
    font-weight: 700;
    color: #442243;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }
  .blog-card-title {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 26px;
    font-weight: 400;
    color: #110811;
    letter-spacing: -0.3px;
    line-height: 1.2;
    margin-bottom: 12px;
    transition: color 0.15s;
  }
  .blog-card-excerpt {
    font-size: 14px;
    color: rgba(17,8,17,0.6);
    line-height: 1.75;
    max-width: 560px;
  }
  .blog-card-arrow {
    font-size: 22px;
    color: #442243;
    opacity: 0.4;
    flex-shrink: 0;
    margin-top: 4px;
    transition: opacity 0.15s, transform 0.15s;
  }
  .blog-card:hover .blog-card-arrow {
    opacity: 1;
    transform: translateX(4px);
  }

  @media (max-width: 640px) {
    .blog-list { gap: 0; }
    .blog-card { flex-direction: column; padding: 24px 0; gap: 16px; }
    .blog-card-image { display: none; }
    .blog-card-arrow { display: none; }
    .blog-card-body { padding: 0; }
    .blog-card h2 { font-size: 20px; }
    .blog-card-meta { font-size: 12px; }
    .blog-tag { font-size: 10px; }
  }

/* ============================================================
   BLOG ARTIKEL
   ============================================================ */
  .artikel-loading { color: rgba(17,8,17,0.4); font-size:15px; padding: 40px 0; }
  .artikel-not-found { background:#fff3f3; border:1px solid #fcc; border-radius:8px; padding:24px; margin:24px 0; }
  @media (max-width:640px) {
    .article-section { margin-bottom:32px; }
    .spec-grid { grid-template-columns:1fr !important; }
    table { font-size:13px; width:100%; }
    table th, table td { padding:8px 10px; }
  }

/* ============================================================
   BLOG BAUREGELN
   ============================================================ */
  @media (max-width: 640px) {
    .article-section { margin-bottom: 32px; }
    .article-section h2 { font-size: 20px; }
    .spec-grid { grid-template-columns: 1fr !important; }
    table { font-size: 13px; width: 100%; }
    table th, table td { padding: 8px 10px; }
  }

/* ============================================================
   BLOG BESCHREIBUNG
   ============================================================ */
  @media (max-width: 640px) {
    .article-section { margin-bottom: 32px; }
    .article-section h2 { font-size: 20px; }
  }

/* ============================================================
   DIENSTLEISTUNGEN: ANKAUF SEITE
   ============================================================ */
  /* ── Vertrauen-Streifen (3-spaltig) ── */
  .trust-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid #e8e8e8;
    margin-bottom: 56px;
  }

  .vorteil:nth-child(5), .vorteil:nth-child(6) { border-bottom: none; }

  /* ── Methoden-Box (Zustandsraster) ── */
  .content-box p { max-width: 580px; }
  .zustand-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 20px;
    border: 1px solid #e0d5e0;
  }
  .zustand-item {
    padding: 16px 14px;
    border-right: 1px solid #e0d5e0;
    text-align: center;
  }
  .zustand-item:last-child { border-right: none; }
  .zustand-grade {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #442243;
    margin-bottom: 4px;
  }
  .zustand-pct {
    font-family: 'Work Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #110811;
    margin-bottom: 4px;
  }
  .zustand-desc {
    font-family: 'Work Sans', sans-serif;
    font-size: 11px;
    color: rgba(17, 8, 17, 0.5);
    line-height: 1.5;
  }

  @media (max-width: 640px) {
    .trust-bar { grid-template-columns: 1fr; }
    .trust-item { border-right: none; border-bottom: 1px solid #e8e8e8; padding: 20px 16px; }
    .trust-item:last-child { border-bottom: none; }
    .content-box p { max-width: 100%; }
    .zustand-grid { grid-template-columns: 1fr 1fr; }
    .zustand-item:nth-child(2) { border-right: none; }
    .zustand-item:nth-child(1),
    .zustand-item:nth-child(2) { border-bottom: 1px solid #e0d5e0; }
  }

/* ============================================================
   DIENSTLEISTUNGEN: UMBAU SEITE
   ============================================================ */
  .vorteil:nth-child(3), .vorteil:nth-child(4) { border-bottom: none; }

/* ============================================================
   DIENSTLEISTUNGEN: UMZUG SEITE
   ============================================================ */
  .vorteil:nth-child(5), .vorteil:nth-child(6) { border-bottom: none; }

/* ============================================================
   DIENSTLEISTUNGEN: VERSAND SEITE
   ============================================================ */
  /* ── Abschnitts-Label ── */

  /* ── Lieferoptionen ── */
  .lief-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-bottom: 56px;
    border: 1px solid #e8e8e8;
  }
  .lief-card {
    padding: 28px 24px;
    border-right: 1px solid #e8e8e8;
    display: flex;
    flex-direction: column;
  }
  .lief-card:last-child { border-right: none; }
  .lief-icon {
    font-size: 22px;
    color: #442243;
    margin-bottom: 16px;
    line-height: 1;
  }
  .lief-card h3 {
    font-family: 'Work Sans', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #110811;
    margin-bottom: 8px;
  }
  .lief-card p {
    font-family: 'Work Sans', sans-serif;
    font-size: 17px;
    color: rgba(17, 8, 17, 0.6);
    line-height: 1.7;
    flex: 1;
  }
  .lief-badge {
    display: inline-block;
    margin-top: 16px;
    padding: 5px 12px;
    background: #f9f5f9;
    border: 1px solid #e0d5e0;
    font-family: 'Work Sans', sans-serif;
    font-size: 17
    px;
    font-weight: 600;
    color: #442243;
    letter-spacing: 0.2px;
    align-self: flex-start;
  }
  .lief-badge.free {
    background: #f0faf4;
    border-color: #c5e0ce;
    color: #2a7050;
  }

  /* ── Detailbox ── */
  .detail-box {
    border: 1px solid #e8e8e8;
    margin-bottom: 56px;
  }
  .detail-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    border-bottom: 1px solid #e8e8e8;
    min-height: 56px;
  }
  .detail-row:last-child { border-bottom: none; }
  .detail-key {
    padding: 16px 20px;
    font-family: 'Work Sans', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: rgba(17, 8, 17, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: #fafafa;
    border-right: 1px solid #e8e8e8;
    display: flex;
    align-items: center;
  }
  .detail-val {
    padding: 16px 20px;
    font-family: 'Work Sans', sans-serif;
    font-size: 17px;
    color: #110811;
    line-height: 1.7;
    display: flex;
    align-items: center;
  }

  /* ── Rabatt-Code Badge ── */
  .rabatt-code {
    display: inline-block;
    margin-top: 12px;
    padding: 6px 14px;
    background: #442243;
    color: #f4f0f4;
    font-family: 'Work Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
  }

  /* ── Zeitfenster Hinweis ── */
  .hinweis-box {
    border-left: 3px solid #442243;
    padding: 20px 24px;
    background: #fafafa;
    margin-bottom: 56px;
  }
  .hinweis-box h4 {
    font-family: 'Work Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #110811;
    margin-bottom: 8px;
  }
  .hinweis-box p {
    font-family: 'Work Sans', sans-serif;
    font-size: 13px;
    color: rgba(17, 8, 17, 0.65);
    line-height: 1.75;
  }

  /* ── Zahlungsmethoden ── */
  .zahlung-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
    border: 1px solid #e8e8e8;
    margin-bottom: 56px;
  }
  .zahlung-item {
    padding: 20px 12px;
    border-right: 1px solid #e8e8e8;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .zahlung-item:last-child { border-right: none; }
  .zahlung-icon {
    font-size: 20px;
    line-height: 1;
    color: #442243;
  }
  .zahlung-name {
    font-family: 'Work Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: rgba(17, 8, 17, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  /* ── WICHTIG Box ── */
  .wichtig-box {
    background: #fff8f0;
    border: 1px solid #e8d8c0;
    padding: 28px 32px;
    margin-bottom: 56px;
  }
  .wichtig-label {
    font-family: 'Work Sans', sans-serif;
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #8a5a00;
    margin-bottom: 12px;
  }
  .wichtig-box p {
    font-family: 'Work Sans', sans-serif;
    font-size: 17px;
    color: rgba(17, 8, 17, 0.7);
    line-height: 1.8;
  }

  /* ── Responsive ── */
  @media (max-width: 640px) {
    .lief-grid { grid-template-columns: 1fr; }
    .lief-card { border-right: none; border-bottom: 1px solid #e8e8e8; padding: 24px 20px; }
    .lief-card:last-child { border-bottom: none; }
    .detail-box { overflow-x: auto; }
    .detail-row { grid-template-columns: 140px 1fr; }
    .detail-key { border-right: none; border-bottom: 1px solid #e8e8e8; font-size: 13px; }
    .detail-val { font-size: 13px; padding: 12px 14px; }
    .zahlung-grid { grid-template-columns: repeat(3, 1fr); }
    .zahlung-item:nth-child(3) { border-right: none; }
    .zahlung-item:nth-child(1),
    .zahlung-item:nth-child(2),
    .zahlung-item:nth-child(3) { border-bottom: 1px solid #e8e8e8; }
    .wichtig-box { padding: 20px 16px; }
  }

/* ============================================================
   DIENSTLEISTUNGEN: UMBAU-SEITE — IST–SOLL PLANUNGSABSCHNITT
   ============================================================ */
.planung-section {
  margin-bottom: 64px;
  background: #f9f5f9;
  border: 1px solid #e8e0e8;
  border-radius: 4px;
  padding: 48px 40px;
}
.planung-label {
  font-family: 'Work Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #442243;
  margin-bottom: 10px;
}
.planung-title {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 28px;
  font-weight: 400;
  color: #110811;
  margin-bottom: 14px;
  line-height: 1.2;
}
.planung-intro {
  font-family: 'Work Sans', sans-serif;
  font-size: 15px;
  color: rgba(17,8,17,0.65);
  line-height: 1.75;
  max-width: 620px;
  margin-bottom: 36px;
}
.planung-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 28px;
}
.planung-card {
  flex: 1;
  background: #fff;
  border: 1px solid #e8e0e8;
  padding: 28px 24px;
}
.planung-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #442243;
  padding: 0 12px;
  margin-top: 40px;
  flex-shrink: 0;
}
.planung-step {
  font-family: 'Work Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: rgba(17,8,17,0.3);
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}
.planung-icon {
  font-size: 24px;
  margin-bottom: 10px;
  line-height: 1;
}
.planung-card h3 {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #110811;
  margin-bottom: 8px;
}
.planung-card p {
  font-family: 'Work Sans', sans-serif;
  font-size: 13px;
  color: rgba(17,8,17,0.6);
  line-height: 1.75;
}
.planung-hinweis {
  display: flex;
  gap: 14px;
  background: #fff;
  border: 1px solid #d8c8d8;
  border-left: 3px solid #442243;
  padding: 16px 20px;
  font-family: 'Work Sans', sans-serif;
  font-size: 13px;
  color: rgba(17,8,17,0.65);
  line-height: 1.75;
}
.planung-hinweis-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}
.planung-hinweis strong {
  color: #110811;
}

@media (max-width: 900px) {
  .planung-section { padding: 36px 24px; }
  .planung-grid { flex-direction: column; gap: 12px; }
  .planung-arrow { margin-top: 0; padding: 4px 0; transform: rotate(90deg); }
  .planung-title { font-size: 22px; }
}
@media (max-width: 600px) {
  .planung-section { padding: 28px 16px; }
  .planung-card { padding: 20px 16px; }
}
