<style>
  :root {
    --header-bg: #2d5016;
    --header-text: #ffffff;
    --body-bg: #fdfaf6;
    --body-text: #2a2520;
    --link: #4a7c2f;
    --link-hover: #2d5016;
    --btn-bg: #4a7c2f;
    --btn-bg-hover: #2d5016;
    --btn-text: #ffffff;
    --footer-bg: #3d2b1f;
    --footer-text: #f0e8dc;
  }

  .bm-page {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: var(--body-bg);
    color: var(--body-text);
    margin: 0;
  }

  .bm-header {
    background-color: var(--header-bg);
    color: var(--header-text);
    padding: 1rem 1.25rem;
  }

  .bm-header-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }

  .bm-logo {
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.03em;
  }

  .bm-nav {
    display: flex;
    gap: 0.75rem;
    font-size: 0.9rem;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .bm-nav a {
    color: var(--header-text);
    text-decoration: none;
    font-weight: 500;
  }

  .bm-nav a:hover {
    text-decoration: underline;
  }

  .bm-hero {
    padding: 2.5rem 1.5rem 2rem;
  }

  .bm-hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
    align-items: center;
  }

  .bm-hero-text h1 {
    font-size: 2rem;
    margin: 0 0 0.75rem;
    color: var(--header-bg);
  }

  .bm-hero-text p {
    font-size: 1.05rem;
    margin: 0 0 1.5rem;
  }

  .bm-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
  }

  .bm-badge {
    font-size: 0.8rem;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    background-color: #e4f0dd;
    color: #2d5016;
  }

  .bm-cta-primary {
    background-color: var(--btn-bg);
    color: var(--btn-text);
    border: none;
    padding: 0.9rem 1.6rem;
    font-size: 1rem;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 600;
  }

  .bm-cta-primary:hover {
    background-color: var(--btn-bg-hover);
    color: var(--btn-text);
  }

 .bm-cta-secondary {
  background-color: transparent;
  border: 1px solid var(--link);
  color: var(--link);
  padding: 0.7rem 1.4rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  transition: 0.2s ease;
}
.bm-cta-secondary:hover {
  background-color: var(--link);
  color: #ffffff; /* Hover-Schrift jetzt weiß */
  border-color: var(--link-hover);
}
.bm-cta-secondary a {
  color: var(--link);
  text-decoration: none;
}

.bm-cta-secondary:hover a {
  color: #ffffff; /* Jetzt wird der Text weiß */
}



  .bm-hero-visual {
    background: linear-gradient(145deg, #e4f0dd, #fdfaf6);
    border-radius: 1.25rem;
    padding: 1.25rem;
    text-align: center;
    font-size: 0.9rem;
    color: #2d5016;
  }

  .bm-hero-visual img {
    max-width: 100%;
    border-radius: 0.75rem;
    display: block;
    margin: 0 auto 0rem;
  }

  .bm-section {
    padding: 2rem 1.5rem;
  }

  .bm-section-inner {
    max-width: 1100px;
    margin: 0 auto;
  }

  .bm-section h2 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: #2d5016;
    font-size: 1.4rem;
  }

  .bm-columns-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .bm-feature-card {
    background-color: #ffffff;
    border-radius: 0.9rem;
    padding: 1.25rem;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
    font-size: 0.95rem;
  }

  .bm-feature-icon {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
  }

  .bm-feature-title {
    font-weight: 600;
    margin-bottom: 0.4rem;
  }

  .bm-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
  }

  .bm-list li {
    margin-bottom: 0.4rem;
    padding-left: 1.4rem;
    position: relative;
    font-size: 0.95rem;
  }

  .bm-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #2d5016;
    font-weight: 700;
  }

  .bm-testimonials {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .bm-testimonial {
    background-color: #ffffff;
    border-radius: 0.9rem;
    padding: 1.25rem;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
    font-size: 0.95rem;
  }

  .bm-testimonial strong {
    display: block;
    margin-top: 0.6rem;
    font-size: 0.85rem;
    color: #4a7c2f;
  }

  .bm-footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 1.75rem 1.5rem;
    margin-top: 1rem;
  }

  .bm-footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .bm-footer a {
    color: var(--footer-text);
    text-decoration: none;
  }

  .bm-footer a:hover {
    text-decoration: underline;
  }

  .bm-footer-meta {
    font-size: 0.8rem;
    opacity: 0.8;
  }

  a {
    color: var(--link);
    text-decoration: none;
  }

  a:hover {
    color: var(--link-hover);
  }

  @media (max-width: 768px) {
    .bm-header-inner {
      flex-direction: column;
      align-items: flex-start;
    }

    .bm-nav {
      justify-content: flex-start;
      font-size: 0.85rem;
    }

    .bm-hero-inner {
      grid-template-columns: 1fr;
    }

    .bm-hero {
      padding: 1.75rem 1.25rem 1.5rem;
    }

    .bm-hero-text h1 {
      font-size: 1.7rem;
    }

    .bm-columns-3 {
      grid-template-columns: 1fr;
    }

    .bm-testimonials {
      grid-template-columns: 1fr;
    }
  }
</style>


footer {
    padding-top: 5px;
    padding-bottom: 5px;
    margin: 0;
}
footer .menu-horizontal {
    flex-direction: row;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}
/*
 * Bonsai Manager – Cassiopeia Extended Feinabstimmung
 * Datei ablegen unter:
 *   media/templates/site/cassiopeia_extended/css/user.css
 *
 * Im Joomla Backend:
 *   System → Vorlagen → Site-Vorlagen →
 *   Cassiopeia Extended Details und Dateien →
 *   Ordner "css" → Neue Datei → user.css
 *
 * Diese Datei wird bei Joomla-Updates NICHT überschrieben.
 * =========================================================
 */

/* ── Cassiopeia Standard-Variablen (Fallback) ─────────────── */
:root {
  --cassiopeia-color-primary: #4a7c2f;
  --cassiopeia-color-hover:   #2d5016;
  --cassiopeia-color-link:    #4a7c2f;
}

/* ── Navigation: aktiver Menüpunkt ────────────────────────── */
.mod-menu .active > a,
.nav-item.active > .nav-link {
  color: #2d5016;
  font-weight: 700;
  border-bottom: 2px solid #7fb069;
}

/* ── Header: Logo/Brand-Schrift ───────────────────────────── */
.site-name,
.navbar-brand {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* ── Card-Komponenten (Login, Module) ─────────────────────── */
.card {
  border: 1px solid #d4e8c2;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(45,80,22,.08);
}
.card-header {
  background-color: #4a7c2f;
  color: #fff;
  border-radius: 10px 10px 0 0 !important;
  font-weight: 700;
}

/* ── Breadcrumb ───────────────────────────────────────────── */
.breadcrumb-item + .breadcrumb-item::before {
  color: #7a7268;
}
.breadcrumb-item.active {
  color: #2a2520;
}

/* ── Sekundär-Buttons ─────────────────────────────────────── */
.btn-secondary {
  background-color: #fdfaf6;
  color: #4a7c2f;
  border: 2px solid #4a7c2f;
}
.btn-secondary:hover,
.btn-secondary:focus {
  background-color: #f0f7eb;
  color: #2d5016;
  border-color: #2d5016;
}

/* ── Fokus-Indikator (WCAG 2.4.7) ─────────────────────────── */
:focus-visible {
  outline: 3px solid #4a7c2f;
  outline-offset: 2px;
}

/* ── Paginierung ──────────────────────────────────────────── */
.page-link {
  color: #4a7c2f;
  border-color: #d4e8c2;
}
.page-item.active .page-link {
  background-color: #4a7c2f;
  border-color: #4a7c2f;
}
.page-link:hover {
  color: #2d5016;
  background-color: #f0f7eb;
  border-color: #7fb069;
}

/* ── Alerts & Meldungen ───────────────────────────────────── */
.alert-success {
  background-color: #f0f7eb;
  border-color: #7fb069;
  color: #2d5016;
}

/* ── Tabellen ─────────────────────────────────────────────── */
.table thead th {
  background-color: #2d5016;
  color: #fff;
  border-color: #4a7c2f;
}
.table tbody tr:hover {
  background-color: #f0f7eb;
}

/* ── prefers-reduced-motion (WCAG 2.3.3) ─────────────────── */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

<style>
  @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Source+Sans+3:wght@300;400;600&display=swap');

  :root {
    --green-deep:   #1e3a0f;
    --green-mid:    #3a6b24;
    --green-light:  #6a9e4a;
    --green-pale:   #c8ddb8;
    --green-mist:   #f0f5eb;
    --earth-dark:   #2c1e0f;
    --earth-mid:    #6b4c30;
    --earth-pale:   #e8d8c4;
    --cream:        #faf7f2;
    --text:         #1a1710;
    --text-muted:   #6b6458;
    --amber:        #b87a1a;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Source Sans 3', Georgia, sans-serif;
    font-weight: 300;
    background: var(--cream);
    color: var(--text);
    font-size: 17px;
    line-height: 1.75;
  }

  /* ── Hintergrund-Textur ── */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
      radial-gradient(ellipse at 20% 20%, rgba(106,158,74,.06) 0%, transparent 60%),
      radial-gradient(ellipse at 80% 80%, rgba(184,122,26,.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
  }

  /* ── Navigation ── */
  nav {
    position: sticky;
    top: 0;
    z-index: 100;
    /* background: rgba(250,247,242,.94); */
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--green-pale);
    padding: 0 clamp(20px, 5vw, 60px);
  }
  .nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 0;
    height: 58px;
  }
  .nav-brand {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--green-deep);
    text-decoration: none;
    margin-right: auto;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .nav-links {
    display: flex;
    gap: 0;
    list-style: none;
  }
  .nav-links a {
    display: block;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .03em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: 4px;
    transition: color .2s, background .2s;
  }
  .nav-links a:hover {
    color: var(--green-mid);
    background: var(--green-mist);
  }
  @media(max-width:680px) { .nav-links { display: none; } }

  /* ── Hero ── */
  .hero {
    position: relative;
    z-index: 1;
    min-height: 520px;
    display: flex;
    align-items: center;
    padding: clamp(60px,10vw,120px) clamp(20px,5vw,60px);
    background:
      linear-gradient(135deg, var(--green-deep) 0%, #2d5018 55%, #1a3a0c 100%);
    overflow: hidden;
  }
  .hero::before {
    content: '🌳';
    position: absolute;
    right: 6%;
    top: 50%;
    transform: translateY(-50%);
    font-size: clamp(120px, 18vw, 240px);
    opacity: .12;
    line-height: 1;
    pointer-events: none;
  }
  .hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--cream));
  }
  .hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
  }
  .hero-eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--green-pale);
    opacity: .8;
    margin-bottom: 16px;
  }
  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 6vw, 72px);
    line-height: 1.1;
    color: #green;
    margin-bottom: 20px;
    max-width: 700px;
  }
  .hero h1 em {
    font-style: italic;
    color: var(--green-pale);
  }
  .hero p {
    font-size: clamp(16px, 2vw, 19px);
    color: rgba(255,255,255,.75);
    max-width: 540px;
    line-height: 1.65;
    margin-bottom: 36px;
  }
  .hero-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  .badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    background: rgba(255,255,255,.12);
    color: green;
    border: 1px solid rgba(255,255,255,.2);
  }

  /* ── Layout ── */
  .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 clamp(20px,5vw,60px);
    position: relative;
    z-index: 1;
  }

  /* ── Section Titles ── */
  .section {
    padding: clamp(48px,8vw,96px) 0;
  }
  .section-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--green-light);
    margin-bottom: 10px;
  }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px,4vw,42px);
    line-height: 1.2;
    color: var(--green-deep);
    margin-bottom: 14px;
  }
  .section-intro {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 620px;
    margin-bottom: 48px;
    line-height: 1.7;
  }

  /* ── Feature Cards ── */
  .feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 48px;
  }
  .feature-card {
    background: #fff;
    border: 1px solid var(--green-pale);
    border-radius: 16px;
    padding: 28px;
    position: relative;
    overflow: hidden;
    transition: transform .2s, box-shadow .2s;
  }
  .feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(30,58,15,.1);
  }
  .feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green-mid), var(--green-light));
  }
  .feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 19px;
    font-weight: 700;
    color: var(--green-deep);
    margin-bottom: 10px;
  }
  .feature-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.65;
  }

  /* ── How-to Steps ── */
  .steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
  }
  .steps::before {
    content: '';
    position: absolute;
    left: 22px;
    top: 44px;
    bottom: 44px;
    width: 2px;
    background: linear-gradient(to bottom, var(--green-pale), transparent);
  }
  .step {
    display: flex;
    gap: 24px;
    padding: 24px 0;
    position: relative;
  }
  .step-num {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--green-mid);
    color: green;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 700;
    position: relative;
    z-index: 1;
  }
  .step-body h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--green-deep);
    margin-bottom: 6px;
    padding-top: 10px;
  }
  .step-body p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.65;
  }

  /* ── Tip Boxes ── */
  .tip {
    background: var(--green-mist);
    border: 1px solid var(--green-pale);
    border-left: 4px solid var(--green-mid);
    border-radius: 0 12px 12px 0;
    padding: 16px 20px;
    font-size: 14px;
    color: var(--green-deep);
    margin: 20px 0;
    display: flex;
    gap: 10px;
    align-items: flex-start;
  }
  .tip-icon { flex-shrink: 0; font-size: 18px; }

  /* ── Zwei-Spalten Layout ── */
  .two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
  }
  @media(max-width:720px) { .two-col { grid-template-columns: 1fr; } }

  /* ── Screen Mockup ── */
  .mockup {
    background: #fff;
    border: 1px solid var(--green-pale);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(30,58,15,.12);
  }
  .mockup-bar {
    background: var(--green-deep);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .mockup-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.3);
  }
  .mockup-title {
    font-size: 12px;
    color: rgba(255,255,255,.6);
    margin-left: 6px;
    font-weight: 600;
  }
  .mockup-body {
    padding: 20px;
  }
  .mockup-card {
    background: var(--green-mist);
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 10px;
    display: flex;
    gap: 12px;
    align-items: center;
  }
  .mockup-thumb {
    width: 44px; height: 44px;
    border-radius: 8px;
    background: var(--green-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
  }
  .mockup-info { flex: 1; }
  .mockup-name { font-size: 13px; font-weight: 700; color: var(--green-deep); }
  .mockup-sub  { font-size: 11px; color: var(--text-muted); margin-top: 2px; }
  .mockup-tag  {
    display: inline-block;
    font-size: 10px; font-weight: 700;
    padding: 2px 7px;
    border-radius: 10px;
    background: var(--green-pale);
    color: var(--green-deep);
    margin-top: 4px;
  }

  /* ── FAQ ── */
  .faq-list { list-style: none; }
  .faq-item {
    border-bottom: 1px solid var(--green-pale);
    padding: 20px 0;
  }
  .faq-item:last-child { border: none; }
  .faq-q {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    color: var(--green-deep);
    margin-bottom: 8px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
  }
  .faq-q::after {
    content: '+';
    font-size: 22px;
    color: var(--green-light);
    flex-shrink: 0;
    transition: transform .2s;
  }
  .faq-item.open .faq-q::after { transform: rotate(45deg); }
  .faq-a {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    display: none;
    padding-top: 8px;
  }
  .faq-item.open .faq-a { display: block; }

  /* ── Tabelle ── */
  table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(30,58,15,.07);
  }
  th {
    background: var(--green-deep);
    color: #fff;
    padding: 12px 16px;
    text-align: left;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .03em;
  }
  td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--green-mist);
    color: var(--text);
    vertical-align: top;
  }
  tr:last-child td { border: none; }
  tr:hover td { background: var(--green-mist); }
  .td-icon { font-size: 18px; }

  /* ── Divider ── */
  .divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--green-pale), transparent);
    margin: 0;
  }

  /* ── Footer ── */
  footer {
    background: var(--earth-dark);
    color: rgba(255,255,255,.5);
    padding: 40px clamp(20px,5vw,60px);
    font-size: 13px;
    text-align: center;
    line-height: 1.8;
    position: relative;
    z-index: 1;
  }
  footer strong { color: rgba(255,255,255,.8); }

  /* ── Scroll indicator ── */
  @keyframes bounce {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(6px); }
  }

  /* ── Anchor offset ── */
  [id] { scroll-margin-top: 70px; }

  /* ── inline code ── */
  code {
    background: var(--green-mist);
    border: 1px solid var(--green-pale);
    border-radius: 4px;
    padding: 1px 6px;
    font-size: 13px;
    font-family: 'Courier New', monospace;
    color: var(--green-deep);
  }
</style>