/* =========================================================
   RESET / BASIS das ist sie >2<
========================================================= */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  display: flex;              /* Footer nach unten drücken */
  flex-direction: column;
  min-height: 100vh;
}

/* ---------------------------------------------------------
   VARIABLEN
--------------------------------------------------------- */
:root {
  --brand-color: #a66130;
  --menu-bar-height: 46px;    /* Höhe der mobilen Menü-Leiste */
  --focus-ring: 3px solid #007B33;
  --nav-h: 64px;              /* Sicherheitsabstand für <main> */
}

/* ---------------------------------------------------------
   SKIP-LINK
--------------------------------------------------------- */
.skip-link { position: absolute; left: -9999px; top: auto; }
.skip-link:focus {
  left: 12px; top: 12px; background:#fff; padding:8px 12px; border-radius:8px; z-index:2000;
}

/* =========================================================
   HEADER / HERO
========================================================= */
.site-header { width: 100%; }
.header-hero {
  background: url("../img/home-hero.webp") center/cover no-repeat;
  height: clamp(260px, 38vw, 420px);
  position: relative;
}

/* =========================================================
   MENÜ-BAR (Mobile/Tablet)
========================================================= */
.menu-bar {
  display: none; /* wird nur ≤ 991px gezeigt */
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  text-align: left;
  padding: 6px 12px;
}
.menu-bar .brand img { height: 40px; width: auto; display: block; }
@media (min-width: 768px) { .menu-bar .brand img { height: 48px; } }
.menu-toggle {
  cursor: pointer;
  font-size: 1.1rem;
  background: none;
  border: 2px solid #333;
  border-radius: 6px;
  padding: 6px 10px;
}

/* Platzhalter (nur falls JS sie einfügt) */
.menubar-placeholder,
.nav-placeholder,
.affix-spacer { width: 100%; height: 0; display: block; }

/* =========================================================
   NAVIGATION (gemeinsam)
========================================================= */
.main-nav {
  width: 100%;
  background-color: #fff;              /* Standard = weiß */
  border-bottom: 1px solid #ddd;
  transition: box-shadow .2s ease, background-color .2s ease;
  z-index: 999;
}
.main-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 12px 16px;
}
.main-nav a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}
.main-nav a:hover,
.main-nav a:focus { color: #007B33; }

/* =========================================================
   MOBILE (≤ 991px) – Panel-Navigation
========================================================= */
@media (max-width: 991px) {
  .menu-bar { display: flex !important; align-items: center; justify-content: space-between; gap: 12px; }

  /* halbtransparenter Hintergrund; per [hidden] ausgeblendet */
  .panel-backdrop,
  .nav-backdrop {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: 999;
  }

  /* Panel-Navigation */
  .main-nav {
    position: fixed;
    top: var(--menu-bar-height);
    left: 16px;
    width: auto;
    min-width: 240px;
    max-width: min(92vw, 420px);
    max-height: calc(100dvh - var(--menu-bar-height) - 24px);
    background: #f2f2f2;
    border: 1px solid #ddd;
    border-radius: 12px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.18);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding: 8px 0;

    /* sanftes Ein-/Ausblenden */
    transform: translateX(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform .22s ease-out, opacity .22s ease-out, visibility 0s linear .22s;
  }
  .main-nav.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: transform .22s ease-out, opacity .22s ease-out, visibility 0s;
  }

  /* Panel-Kopf (Titel + X) */
  .main-nav .panel-header {
    position: sticky; top: 0;
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px;
    padding: 10px 12px;
    background: #f2f2f2;
    border-bottom: 1px solid #ddd;
    border-top-left-radius: 12px; border-top-right-radius: 12px;
    z-index: 1;
  }
  .panel-close {
    appearance: none;
    background: transparent;
    border: 1px solid #999;
    border-radius: 8px;
    padding: 6px 10px;
    font-size: 1rem;
    cursor: pointer;
  }
  .panel-close:focus-visible { outline: var(--focus-ring); outline-offset: 2px; }

  /* Liste im Panel vertikal */
  .main-nav ul { display: block; padding: 0; margin: 0; }
  .main-nav li { border-top: 1px solid #ddd; }
  .main-nav li:first-child { border-top: 0; }
  .main-nav li a { display: block; padding: 12px 16px; text-align: left; }

  /* Body lock: Hintergrund nicht scrollen, Panel scrollt */
  body.menu-open { overflow: hidden; }
}

/* SAFETY: Panel ist sichtbar, wenn Body "menu-open" trägt (mobil) */
@media (max-width: 991px) {
  body.menu-open #primary-navigation {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateX(0) !important;
  }
}

/* =========================================================
   DESKTOP (≥ 992px)
   - Menü-Bar ausblenden, Navigation zentriert & weiß
   - Mobile-Header-Elemente ("Menü ✕") ausblenden
========================================================= */
@media (min-width: 992px) {
  .menu-bar { display: none !important; }

  .main-nav {
    position: relative; /* Standard, Fixierung kommt via .is-fixed */
    background: #fff !important;
    border-bottom: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 1px 4px rgba(0,0,0,.07);
  }

  .main-nav .panel-header,
  .main-nav .panel-close,
  #primary-navigation .panel-header,
  #primary-navigation .panel-close,
  #primary-navigation .menu-close { display: none !important; }

  #primary-navigation { display:flex !important; justify-content:center; align-items:center; }
  #primary-navigation > ul { display:flex; gap:30px; margin:0 auto; justify-content:center; }
}

/* =========================================================
   AFFIX-LOGIK (nach Hero fixieren)
   - Standard: nichts ist fix
   - JS setzt .is-fixed auf .menu-bar (mobil) oder .main-nav (Desktop)
   - body.affixed gibt <main> oben Abstand
========================================================= */
@media (max-width: 991px) {
  .menu-bar { position: static !important; }
  .main-nav { top: var(--menu-bar-height) !important; }
}
@media (min-width: 992px) {
  .main-nav { position: relative !important; }
}

body.affixed main { padding-top: var(--nav-h) !important; }
main { scroll-margin-top: var(--nav-h); }

/* =========================================================
   SLIDER
========================================================= */
.slides {
  position: relative;
  max-width: 1200px;
  margin: 20px auto;
  overflow: hidden;
  border-radius: 15px;
  aspect-ratio: 16 / 9;
  background: #ddd;
}
.slides img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .8s ease-in-out;
  border-radius: 15px;
}
.slides img.active { opacity: 1; }
.prev, .next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  font-size: 2rem; color: #fff; background: none; border: none; cursor: pointer; z-index: 10;
}
.prev { left: 10px; } .next { right: 10px; }
.dots { position: absolute; bottom: 12px; width: 100%; text-align: center; z-index: 10; }
.dots .dot {
  display: inline-block; width: 14px; height: 14px; margin: 0 5px;
  background-color: rgba(255,255,255,0.7); border-radius: 50%; cursor: pointer;
}
.dots .dot.active { background-color: #007B33; }
@media (prefers-reduced-motion: reduce) { .slides img { transition: none; } }

/* =========================================================
   MAIN-CONTAINER
========================================================= */
.content-center {
  max-width: 900px;
  margin: 60px auto 40px auto;
  padding: 0 20px;
  text-align: center;
  flex: 1 0 auto;
}
@media (min-width: 992px) { .content-center { margin-top: 80px; } }

/* =========================================================
   TEASER-GRID
========================================================= */
.teaser-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.teaser {
  background: #f9f9f9; border: 1px solid #ddd; border-radius: 12px; padding: 20px; text-align: left;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.teaser h2 { margin-bottom: 10px; font-size: 1.3rem; color: var(--brand-color); }
.teaser p { margin-bottom: 15px; }
.teaser .btn {
  display: inline-block; background: var(--brand-color); color: #fff;
  padding: 8px 14px; border-radius: 6px; text-decoration: none; font-weight: bold;
}
.teaser .btn:hover { background: #7f4825; }

/* =========================================================
   FOOTER
========================================================= */
footer {
  background-color: #333; color: #fff;
  padding: 28px 40px; margin-top: auto; position: relative; z-index: 1;
}
.footer-container {
  display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap;
  max-width: 1400px; margin: 0 auto;
}
.footer-col { flex: 1; min-width: 220px; }
footer h3 { font-size: 1.1rem; margin-bottom: 10px; }
footer ul { list-style: none; }
footer li + li { margin-top: 6px; }
footer a { color: #fff; text-decoration: none; }
footer a:hover { text-decoration: underline; }

/* Social + Logo */
.footer-logo { text-align: left; }
.footer-logo .social-links { margin-bottom: 12px; }
.footer-logo .social-links a { display: inline-block; margin-right: 10px; }
.footer-logo .logo-block { margin-top: 8px; }
.footer-logo img { max-width: 160px; height: auto; }
.footer-logo .brand-text {
  color: var(--brand-color); font-size: 1.1rem; font-weight: bold; margin-top: 8px;
}

/* Footer-Abschlusszeile */
.footer-bottom {
  text-align: center; margin-top: 25px; border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 12px; font-size: 0.95rem; opacity: 0.9;
}

/* Rechtliches-Spalte schmaler halten */
.footer-col.legal { flex: 0 0 160px; min-width: 140px; }
.footer-col.legal h3 { font-size: 1rem; margin-bottom: 6px; }
.footer-col.legal ul li { margin: 2px 0; font-size: 0.95rem; }

/* Adresse formatiert */
.footer-address { font-style: normal; line-height: 1.5; }
.footer-address .line { display: flex; }
.footer-address .label { display: inline-block; min-width: 8ch; }
.footer-address .street { flex: 1; }
.footer-address .city { padding-left: 8ch; }

/* Handy Footer Layout */
@media (max-width: 768px) {
  footer { padding: 28px 20px; text-align: center; }
  .footer-container { flex-direction: column; align-items: center; }
  .footer-logo { text-align: center; }
}

/* =========================================================
   FOCUS-OUTLINES
========================================================= */
.main-nav a:focus-visible,
.menu-toggle:focus-visible,
.panel-close:focus-visible,
.prev:focus-visible, .next:focus-visible {
  outline: var(--focus-ring);
  outline-offset: 2px;
}

/* =========================================================
   ANGEBOTE / ÜBER-UNS / FAQ / KONTAKT (Auszug unverändert)
========================================================= */
.offer-section { margin-top: 40px; text-align: left; }
.offer-section > h2 { margin: 16px 0 12px; color: #000; font-size: 1.6rem; }
.offer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.offer-card {
  background: #f9f9f9; border: 1px solid #e4e4e4; border-radius: 12px; padding: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05); display: flex; flex-direction: column; gap: 10px;
}
.offer-card h3 { font-size: 1.2rem; margin-bottom: 4px; }
.offer-card p { margin: 0 0 6px 0; }
.offer-meta { display: flex; flex-wrap: wrap; gap: 8px; }
.tag { display: inline-block; font-size: .85rem; background: #eee; border: 1px solid #ddd; border-radius: 999px; padding: 3px 8px; }
.offer-card .btn { align-self: flex-start; margin-top: 6px; }
.hint { margin-top: 28px; opacity: .9; }

.lead { max-width: 800px; margin: 0 auto 24px auto; font-size: 1.05rem; }
.about-card {
  display: grid; grid-template-columns: 160px 1fr; gap: 18px; align-items: start;
  background: #f9f9f9; border: 1px solid #e4e4e4; border-radius: 12px; padding: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.about-media img { width: 100%; height: auto; border-radius: 10px; object-fit: cover; }
.about-facts { margin-top: 10px; padding-left: 18px; }
.about-facts li { margin: 6px 0; }
@media (max-width: 640px) { .about-card { grid-template-columns: 1fr; } }
.about-values { margin-top: 28px; text-align: left; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 16px; margin-top: 10px; }
.value { background: #fff; border: 1px solid #eaeaea; border-radius: 12px; padding: 14px; box-shadow: 0 3px 10px rgba(0,0,0,0.04); }
.value h3 { margin-bottom: 6px; color: var(--brand-color); font-size: 1.05rem; }
.about-offers { margin-top: 28px; text-align: left; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 10px 0 6px 0; }
.chip { display: inline-block; padding: 6px 10px; border-radius: 999px; background: #f0f0f0; border: 1px solid #ddd; font-size: .9rem; white-space: nowrap; }
.muted { opacity: .9; }
.about-timeline { margin-top: 28px; text-align: left; }
.timeline { list-style:none; padding:0; margin:12px 0 0 0; position:relative; }
.timeline::before { content:""; position:absolute; left:10px; top:0; bottom:0; width:2px; background:#e0e0e0; }
.timeline > li { position:relative; padding-left:32px; margin:14px 0; }
.t-bullet { position:absolute; left:4px; top:4px; width:12px; height:12px; border-radius:50%; background:var(--brand-color); }
.t-content h3 { margin:0 0 4px 0; font-size:1.05rem; }
.t-content p { margin:0; }
.cta { margin-top:36px; }
.cta .btn { margin-top:8px; }

.faq { margin-top: 40px; text-align: left; }
.faq h2 { margin-bottom: 16px; }
.faq-list details {
  background:#f9f9f9; border:1px solid #e4e4e4; border-radius:8px;
  padding:12px 16px; margin-bottom:10px; cursor:pointer; transition: background .2s ease;
}
.faq-list details:hover { background:#f3f3f3; }
.faq-list summary { font-weight:bold; list-style:none; cursor:pointer; }
.faq-list summary::-webkit-details-marker { display:none; }
.faq-list p { margin:8px 0 0; }

.contact-info { margin: 24px 0; text-align: left; }
.contact-info address { font-style: normal; line-height: 1.5; }
.contact-info a { color: var(--brand-color); }
.contact-form { margin: 24px 0; text-align: left; }
.contact-form form { display:flex; flex-direction:column; gap:10px; max-width:500px; margin:0 auto; }
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea { width:100%; padding:8px; border:1px solid #ccc; border-radius:6px; }
.contact-form input[type="submit"].btn { align-self:flex-start; }
.contact-info p { margin: 6px 0; }


.menu-bar.is-fixed {
  position: fixed  !important; 
  top: 0; left: 0; right: 0; z-index: 1100;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.main-nav.is-fixed {
  position: fixed  !important;
  top: 0; left: 0; right: 0; z-index: 1100;
  background: #fff; border-bottom: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 1px 4px rgba(0,0,0,.07);
}

/* =======================
   Kontaktformular Fehler
   ======================= */

.form-error-summary {
  background: #ffecec;              /* hellrot hinterlegt */
  border: 1px solid #f5c2c7;        /* zarter roter Rahmen */
  padding: 10px;
  margin: 10px 0;
  border-radius: 6px;
  font-size: 0.95rem;
}

.field-error {
  color: #b00020;                   /* kräftiges Rot für Text */
  margin: 4px 0 8px;
  font-size: 0.9rem;
}

[aria-invalid="true"] {
  border-color: #b00020 !important; /* roter Rahmen für fehlerhafte Felder */
  outline-color: #b00020 !important;
  background-color: #fff6f6;        /* leicht rosiger Hintergrund */
}
/* =========================================================
   ANGEBOTE – Karten wie Teaser, Buttons in Markenfarbe
========================================================= */

/* Kartentitel in Braun wie auf der Startseite */
.offer-card h3 {
  color: var(--brand-color);
  font-weight: 700;
}

/* Buttons nebeneinander, mit Wrap & Abstand */
.offer-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 6px;
}


.btn,
.btn-secondary {
  background: var(--brand-color);
  color: #fff;
  display: inline-block;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  line-height: 1.2;
}

.btn:hover,
.btn-secondary:hover {
  background: #7f4825; /* dunkleres Braun */
  color: #fff;
}

/* CTA-Bereich: etwas Luft über dem Button */
.cta .btn { margin-top: 8px; }

/* Angebots-Karten (falls noch nicht gesetzt): Titel in Braun */
.offer-card h3 { color: var(--brand-color); font-weight: 700; }

/* Kategorien-Überschriften: schwarz wie gewünscht */
.offer-section > h2 { color: #000 !important; }

/* Buttons in den Karten: nebeneinander + Wrap */
.offer-actions {
  display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin-top: 6px;
}

@media (max-width: 420px) {
  .btn, .btn-secondary { font-size: .92rem; padding: 8px 12px; }
}
/* Schlanker Button nur für einzelne Stellen */
.btn--compact {
  padding: 4px 8px;   /* weniger horizontaler Platz */
  font-size: 0.9rem;  /* leicht kleinere Schrift */
  border-radius: 5px;  /* etwas kompakter */
}
@media (max-width: 420px) {
  .btn--compact { font-size: 0.8rem; padding: 4px 8px; }
}
/* Unsichtbares Honeypot-Feld für Bots */
.hp-field { position:absolute; left:-10000px; top:auto; width:1px; height:1px; overflow:hidden; }
.sr-only { position:absolute; left:-10000px; width:1px; height:1px; overflow:hidden; }

/* Optional: Feedback-Styles */
.alert.ok { background:#e8f6ec; border:1px solid #2e7d32; color:#1b5e20; padding:.8rem 1rem; border-radius:.4rem; }
.form-error-summary { background:#fdecea; border:1px solid #c62828; color:#b71c1c; padding:.8rem 1rem; border-radius:.4rem; }

/* --- Kontaktseite: Überschriften mittig --- */
.contact-info h2,
.contact-form h2,
.faq h2 {
  text-align: center;
  margin-inline: auto;
}

/* --- Kontaktdaten-Block mittig platzieren --- */
.contact-info {
  text-align: center;       /* zentriert Kinder-Elemente wie das inline-block address */
  margin: 2rem auto;        /* Abstand + zentrierter Block */
}

/* Das Address-Element selbst schmal & linksbündig (bessere Lesbarkeit) */
.contact-info address {
  display: inline-block;    /* kann innerhalb des zentrierten Containers mittig stehen */
  text-align: left;         /* Zeilen linksbündig lassen */
  max-width: 28rem;         /* angenehme Breite, gerne anpassen */
  line-height: 1.6;
}

/* ========== UTILITIES: Headlines, Abstände, Card ========== */

/* Heading-Hilfen */
.h-left        { text-align: left; }
.h-strong      { font-weight: 600; }          /* dezenter als 700 */
.h-space-tight { margin-top: 2rem; margin-bottom: .6rem; }  /* mehr Luft oben, weniger unten */
.h-space-loose { margin-top: 1rem; margin-bottom: 1.2rem; } /* alternativ: unten mehr Luft */

/* Neutrale Karte (Rahmen wie "Über uns", aber ohne Grid) */
.card {
  background: #f9f9f9;
  border: 1px solid #e4e4e4;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* Varianten (optional) */
.card--padded { padding: 20px; }
.card--accent {
  position: relative;
  overflow: hidden;
}
.card--accent::before {
  content: "";
  position: absolute; inset: 0 0 auto 0;
  height: 6px; background: var(--brand-color);
}
/* ========== Legal Pages: H1 zentriert, Rest links ========== */
.legal-page { 
  text-align: left;                 /* Rest linksbündig */
}

/* H1 bleibt mittig */
.legal-page h1 {
  text-align: center;
  margin-bottom: 1rem;
}

/* etwas Luft für Unterüberschriften & Text */
.legal-page h2, 
.legal-page h3 { 
  margin-top: 1.25rem; 
  margin-bottom: .6rem; 
}

.legal-page p,
.legal-page ul,
.legal-page ol,
.legal-page table,
.legal-page address {
  margin-bottom: .8rem;
}
/* ========== Über-uns: h2 mittig, Text links ========== */
.about-intro .about-body { 
  text-align: left;               /* p & ul linksbündig */
}

.about-intro .about-body h2 {
  text-align: center;             /* nur die Überschrift mittig */
  margin-bottom: .6rem;           /* etwas Luft darunter */
}

/* optional: Liste minimal luftiger */
.about-intro .about-body .about-facts { 
  margin-top: .6rem;
}
.about-intro .about-body .about-facts li { 
  margin: .35rem 0;
}
/* ===============================
   Angebots-Detailseiten (Offer)
   =============================== */



/* 1) Breadcrumb-/Nav-Zeile im <main> ausblenden (falls vorhanden) */
.offer-page .breadcrumb { display: none !important; }

/* 2) Alle inhaltlichen Sektionen linksbündig */
.offer-page .offer-hero,
.offer-page .offer-content,
.offer-page .offer-benefits,
.offer-page .offer-facts,
.offer-page .offer-flow,
.offer-page .offer-pricing,
.offer-page .offer-cta {
  text-align: left;
}

/* 3) Sektionen: oben mehr Luft als unten */
.offer-page .section-block {
  margin-top: 32px;   /* ↑ mehr oben */
  margin-bottom: 16px;/* ↓ etwas weniger unten */
}

/* 4) Rahmen für den eigentlichen Inhalt (Überschrift steht außerhalb!) */
.offer-page .frame {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px 18px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* etwas mehr Innenabstand, wenn gewünscht */
.offer-page .frame--padded { padding: 20px 22px; }

/* 5) Fakten: <strong> im Brand-Ton */
.offer-page .offer-facts strong {
  color: var(--brand-color);
  font-weight: 700; /* gern 600 nehmen, wenn dezenter gewünscht */
}

/* 6) Buttons im Hero – kleiner Abstand zwischen mehreren Buttons */
.offer-page .offer-hero .btn + .btn { margin-left: 8px; }
  /* nichts nötig – nutze im Markup .btn--compact */


/* 7) Überschriften in Sektionen – etwas Luft darunter */
.offer-page .offer-hero > h2,
.offer-page .offer-content > h2,
.offer-page .offer-benefits > h2,
.offer-page .offer-facts > h2,
.offer-page .offer-flow > h2,
.offer-page .offer-pricing > h2,
.offer-page .offer-cta > h2 {
  margin-bottom: .6rem;
}
/* Benefits: <strong> wie Facts einfärben */
.offer-page .offer-facts strong,
.offer-page .offer-benefits strong,
.offer-page .offer-pricing strong {
  color: var(--brand-color);
  font-weight: 700; /* falls zu fett, 600 nehmen */
}

/* Mehr Innenabstand nur in Content/Benefits/Facts/Flow/Pricing (nicht Hero/CTA) */
.offer-page .offer-content .frame,
.offer-page .offer-benefits .frame,
.offer-page .offer-facts .frame,
.offer-page .offer-flow .frame
.offer-page .offer-pricing .frame {
  padding: 16px 22px; /* vorher 16/18 – jetzt links/rechts luftiger */
}
/* Nur Listen in gerahmten Blöcken etwas weiter einrücken,
   damit Bullet-Dots nicht am Rahmen kleben.
   Absätze (p) bleiben unverändert links. */
.offer-page .section-block .frame ul,
.offer-page .section-block .frame ol {
  list-style-position: inside;   /* Marker wandert mit nach innen */
  padding-left: 0.6rem;          /* Extra-Einzug NUR für Listen */
  margin: 10px 0;                /* Luft oben/unten */
}

.offer-page .section-block .frame li {
  margin: 6px 0;                 /* Zeilenabstand zwischen Punkten */
  line-height: 1.55;
}

/* Schöner Abstand, wenn auf einen Absatz direkt eine Liste folgt */
.offer-page .section-block .frame p + ul,
.offer-page .section-block .frame p + ol {
  margin-top: 10px;
}

/* Optional: etwas mehr Luft unter dem Absatz vor der Liste */
.offer-page .section-block .frame p {
  margin: 0 0 8px 0;
}
.offer-page .offer-pricing .price-list strong {
  color: var(--brand-color);
  font-weight: 700;
  white-space: nowrap;
}
/* B) Preisliste: bündige Preise ohne Tabellendarstellung */
/* Preisliste: Bullets behalten, Preise bündig ohne „Tabelle“ */
.offer-page .offer-pricing .price-list {
  /* KEIN list-style: none;  -> Bullets bleiben!
     Die globalen Regeln für Listen in .frame greifen weiter
     (list-style-position: inside; padding-left: 0.6rem) */
  margin: 8px 0 10px; /* kompakt */
  /* optional, sorgt für ruhigere Ziffern-Spalten */
  font-variant-numeric: tabular-nums;
}

.offer-page .offer-pricing .price-list li {
  margin: 4px 0;     /* enger Zeilenabstand */
  line-height: 1.5;
}

/* Label (z.B. „4 Stunden:“) bekommt feste Inline-Breite:
   -> danach starten alle Preise auf derselben X-Position.
   Bullets bleiben, weil das LI weiterhin eine Liste ist. */
.offer-page .offer-pricing .price-list li > strong {
  display: inline-block;
  width: var(--price-label-width, 12ch); /* bei Bedarf 10–14ch feinjustieren */
  white-space: nowrap;                   /* Label bleibt einzeilig */
  /* Brand-Farbe greift bereits über .offer-page strong { color: var(--brand-color); } */