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

    :root {
      --gruen:        #4a8a3f;
      --gruen-dark:   #357030;
      --gruen-deeper: #1e4018;
      --gruen-light:  #eef6ec;
      --gruen-pale:   #f5fbf4;
      --gold:         #c8972a;
      --gold-light:   #fdf5e4;
      --text:         #1a2218;
      --text-mid:     #3d4f3a;
      --text-muted:   #6b7d68;
      --border:       #deeadc;
      --white:        #ffffff;
      --font:         'Segoe UI', -apple-system, Helvetica, Arial, sans-serif;
    }

    html { scroll-behavior: smooth; }
    body { font-family: var(--font); color: var(--text); line-height: 1.72; background: var(--white); -webkit-font-smoothing: antialiased; }
    img  { max-width: 100%; display: block; }
    a    { color: var(--gruen); }

    h1 { font-size: clamp(2.2rem, 5.5vw, 3.5rem); font-weight: 900; line-height: 1.08; letter-spacing: -0.03em; }
    h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 800; line-height: 1.18; letter-spacing: -0.02em; color: var(--text); }
    h3 { font-size: 1.1rem; font-weight: 700; color: var(--text); line-height: 1.3; }
    p  { color: var(--text-mid); line-height: 1.75; }

    .label {
      font-size: 0.7rem; font-weight: 800; letter-spacing: 0.15em;
      text-transform: uppercase; color: var(--gruen); display: block; margin-bottom: 0.5rem;
    }
    .wrap    { max-width: 1060px; margin: 0 auto; padding: 0 1.5rem; }
    .wrap-sm { max-width: 680px;  margin: 0 auto; padding: 0 1.5rem; }
    section  { padding: 5rem 1.5rem; }
    .center  { text-align: center; }
    .bg-pale { background: var(--gruen-pale); }

    /* BUTTONS */
    .btn {
      display: inline-flex; align-items: center; gap: 0.4rem;
      padding: 0.9rem 1.9rem; border-radius: 50px; font-weight: 700;
      font-size: 0.95rem; text-decoration: none; border: none; cursor: pointer;
      transition: transform 0.15s, box-shadow 0.15s, background 0.15s; white-space: nowrap;
    }
    .btn:hover { transform: translateY(-2px); }
    .btn-gruen   { background: var(--gruen) !important; color: var(--white) !important; box-shadow: 0 3px 14px rgba(74,138,63,0.3); }
    .btn-gruen:hover { background: var(--gruen-dark) !important; box-shadow: 0 6px 20px rgba(74,138,63,0.38); }
    .btn-outline { background: transparent; color: var(--gruen); border: 2px solid var(--gruen); }
    .btn-outline:hover { background: var(--gruen-light); }
    .btn-white   { background: var(--white); color: var(--gruen-deeper); box-shadow: 0 3px 14px rgba(0,0,0,0.12); }
    .btn-white:hover { box-shadow: 0 6px 22px rgba(0,0,0,0.18); }
    .btn-gold    { background: var(--gold); color: var(--white); }
    .btn-gold:hover { background: #b3841e; }
    .btn-lg { padding: 1.05rem 2.2rem; font-size: 1.05rem; }
    .btn-sm { padding: 0.55rem 1.2rem; font-size: 0.85rem; }

    /* NAV */
    .lp-nav {
      position: sticky; top: 0; z-index: 200;
      background: rgba(255,255,255,0.97);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border);
      box-shadow: 0 2px 16px rgba(0,0,0,0.05);
    }
    .nav-inner {
      max-width: 1060px; margin: 0 auto; padding: 0 1.5rem;
      height: 66px; display: flex; align-items: center; justify-content: space-between;
    }
    .nav-logo {
      display: flex; align-items: center; gap: 0.5rem;
      font-weight: 800; font-size: 0.97rem; color: var(--text); text-decoration: none; flex-shrink: 0;
    }
    .nav-logo:hover { color: var(--gruen); }
    .nav-links {
      display: flex; align-items: center; gap: 0.1rem;
    }
    .nav-links a {
      color: var(--text-mid) !important; text-decoration: none !important; font-size: 0.84rem !important; font-weight: 500 !important;
      padding: 0.4rem 0.75rem !important; border-radius: 8px !important; transition: background 0.15s, color 0.15s !important;
      background: transparent !important; display: inline-block !important;
    }
    .nav-links a:hover { background: var(--gruen-light) !important; color: var(--gruen-dark) !important; }
    .nav-cta {
      background: var(--gruen) !important; color: var(--white) !important;
      border-radius: 50px !important; padding: 0.45rem 1.1rem !important;
      font-weight: 700 !important; margin-left: 0.5rem !important;
    }
    .nav-cta:hover { background: var(--gruen-dark) !important; }

    /* HERO */
    .hero {
      background: linear-gradient(150deg, var(--white) 0%, #f0f9ee 45%, #e8f5e5 100%);
      min-height: 86vh; display: flex; align-items: center;
      padding: 0; overflow: hidden; position: relative;
    }
    .hero::before {
      content: ''; position: absolute; right: -80px; top: -80px;
      width: 480px; height: 480px; border-radius: 50%;
      background: radial-gradient(circle, rgba(74,138,63,0.08) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero-inner {
      max-width: 1060px; margin: 0 auto; padding: 5rem 1.5rem 4rem;
      width: 100%; display: grid; grid-template-columns: 1fr 380px;
      gap: 4rem; align-items: center; position: relative; z-index: 1;
    }
    .eyebrow-pill {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: var(--white); border: 1px solid var(--border); border-radius: 50px;
      padding: 0.33rem 1rem 0.33rem 0.6rem; font-size: 0.73rem; font-weight: 800;
      letter-spacing: 0.07em; text-transform: uppercase; color: var(--gruen-dark);
      margin-bottom: 1.4rem; box-shadow: 0 2px 8px rgba(74,138,63,0.09);
    }
    .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gruen); animation: blink 2.4s ease-in-out infinite; }
    @keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0.3;} }
    .hero h1 { color: var(--text); margin-bottom: 1.2rem; }
    .hero h1 em { font-style: normal; color: var(--gruen); }
    .hero p.sub { font-size: 1.08rem; color: var(--text-mid); margin-bottom: 2rem; max-width: 460px; }
    .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }

    .stats-row {
      display: inline-flex; background: var(--white);
      border: 1px solid var(--border); border-radius: 14px;
      box-shadow: 0 2px 12px rgba(74,138,63,0.08); overflow: hidden;
    }
    .st { padding: 0.85rem 1.3rem; text-align: center; border-right: 1px solid var(--border); }
    .st:last-child { border-right: none; }
    .st strong { display: block; font-size: 1.3rem; font-weight: 900; color: var(--gruen); line-height: 1; letter-spacing: -0.02em; }
    .st span   { font-size: 0.67rem; color: var(--text-muted); font-weight: 600; margin-top: 0.2rem; display: block; }

    .hero-foto-col { position: relative; display: flex; justify-content: center; }
    .foto-pill {
      width: 300px; height: 400px;
      border-radius: 160px 160px 120px 120px; overflow: hidden;
      box-shadow: 0 20px 60px rgba(74,138,63,0.2), 0 4px 16px rgba(0,0,0,0.08);
      border: 4px solid var(--white);
    }
    .foto-pill img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
    .foto-badge-1 {
      position: absolute; bottom: 28px; left: -5px;
      background: var(--white); border: 1px solid var(--border); border-radius: 12px;
      padding: 0.6rem 1rem; box-shadow: 0 4px 20px rgba(0,0,0,0.1);
      font-size: 0.78rem; font-weight: 700; color: var(--text);
      display: flex; align-items: center; gap: 0.45rem;
    }
    .foto-badge-2 {
      position: absolute; top: 18px; right: -6px;
      background: var(--gold); color: var(--white); border-radius: 12px;
      padding: 0.5rem 0.8rem; font-size: 0.7rem; font-weight: 800;
      line-height: 1.45; text-align: center;
      box-shadow: 0 4px 16px rgba(200,151,42,0.3);
    }

    /* REFERENZ BAR */
    .ref-bar {
      background: var(--gruen-pale);
      border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
      padding: 1.2rem 1.5rem;
    }
    .ref-bar-inner {
      max-width: 1060px; margin: 0 auto;
      display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 0.5rem 2rem;
    }
    .ref-bar-label { font-size: 0.68rem; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; color: var(--text-muted); }
    .ref-item { display: flex; align-items: center; gap: 0.4rem; font-size: 0.82rem; font-weight: 700; color: var(--text-mid); }

    /* B2B BERATUNG */
    .beratung-intro { max-width: 1060px; margin: 0 auto 3rem; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
    .beratung-intro-text h2 { margin-bottom: 1rem; }
    .beratung-intro-text p  { margin-bottom: 0.8rem; }

    .zielgruppen { display: flex; flex-wrap: wrap; gap: 0.45rem; margin: 1.2rem 0; }
    .zg-tag {
      background: var(--gruen-light); border: 1px solid var(--border);
      border-radius: 50px; padding: 0.28rem 0.85rem;
      font-size: 0.78rem; font-weight: 700; color: var(--gruen-dark);
    }

    /* RECHTLICHER RAHMEN BOX */
    .rechts-box {
      background: var(--gruen-pale); border: 1px solid var(--border); border-radius: 18px; padding: 1.8rem;
    }
    .rechts-box ul { list-style: none; }
    .rechts-box li {
      padding: 0.55rem 0 0.55rem 1.7rem; position: relative;
      font-size: 0.9rem; color: var(--text-mid); border-bottom: 1px solid var(--border);
    }
    .rechts-box li:last-child { border-bottom: none; }
    .rechts-box li span { position: absolute; left: 0; color: var(--gruen); font-weight: 900; }
    .rechts-box li strong { color: var(--text); }

    /* PAKETE */
    .pakete-grid {
      max-width: 1060px; margin: 0 auto;
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem;
    }
    .paket {
      background: var(--white); border: 1.5px solid var(--border);
      border-radius: 20px; padding: 2rem 1.7rem;
      position: relative; display: flex; flex-direction: column;
      transition: transform 0.18s, box-shadow 0.18s;
    }
    .paket:hover { transform: translateY(-4px); box-shadow: 0 10px 36px rgba(74,138,63,0.12); }
    .paket.highlight {
      background: linear-gradient(160deg, var(--gruen-deeper) 0%, var(--gruen-dark) 100%);
      border-color: var(--gruen-dark);
    }
    .paket-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--white); font-size: 0.68rem; font-weight: 900; padding: 0.22rem 0.8rem; border-radius: 50px; text-transform: uppercase; letter-spacing: 0.08em; white-space: nowrap; }
    .pk-label { font-size: 0.68rem; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; color: var(--gruen); margin-bottom: 0.3rem; display: block; }
    .paket.highlight .pk-label { color: rgba(255,255,255,0.6); }
    .paket h3 { font-size: 1.2rem; margin-bottom: 0.25rem; }
    .paket.highlight h3 { color: var(--white); }
    .pk-zielgruppe { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 1rem; font-style: italic; }
    .paket.highlight .pk-zielgruppe { color: rgba(255,255,255,0.5); }

    .pk-list { list-style: none; flex: 1; }
    .pk-list li {
      padding: 0.42rem 0 0.42rem 1.7rem; position: relative;
      font-size: 0.9rem; color: var(--text-mid);
      border-bottom: 1px solid var(--gruen-light);
    }
    .pk-list li:last-child { border-bottom: none; }
    .pk-list li::before { content: '✓'; position: absolute; left: 0; color: var(--gruen); font-weight: 900; font-size: 0.82rem; }
    .paket.highlight .pk-list li { color: rgba(255,255,255,0.88); border-bottom-color: rgba(255,255,255,0.1); }
    .paket.highlight .pk-list li::before { color: rgba(255,255,255,0.65); }

    .pk-preis { margin: 1.3rem 0 0.3rem; }
    .pk-preis strong { font-size: 1.4rem; font-weight: 900; color: var(--text); display: block; line-height: 1.1; }
    .paket.highlight .pk-preis strong { color: var(--white); }
    .pk-preis span { font-size: 0.75rem; color: var(--text-muted); }
    .paket.highlight .pk-preis span { color: rgba(255,255,255,0.5); }

    .pk-hint {
      font-size: 0.8rem; color: var(--gruen-dark); font-weight: 700;
      margin: 0.9rem 0 1.1rem; padding: 0.55rem 0.8rem;
      background: var(--gruen-light); border-radius: 8px;
      border-left: 3px solid var(--gruen);
      display: flex; align-items: center; gap: 0.4rem;
    }
    .paket.highlight .pk-hint {
      background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.9);
      border-left-color: rgba(255,255,255,0.4);
    }
    .pk-zahlung {
      font-size: 0.75rem; color: var(--text-muted); margin-bottom: 1.2rem;
      padding: 0.4rem 0.7rem; background: var(--gruen-pale); border-radius: 8px;
      display: flex; align-items: center; gap: 0.4rem;
    }
    .paket.highlight .pk-zahlung { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.55); }

    /* MONITORING TEASER */
    .monitoring-teaser {
      max-width: 1060px; margin: 2rem auto 0;
      background: var(--gold-light); border: 1px solid #e8d5a0; border-radius: 18px;
      padding: 1.6rem 2rem; display: flex; align-items: center; gap: 1.3rem; flex-wrap: wrap;
    }
    .mt-icon { font-size: 1.8rem; flex-shrink: 0; }
    .mt-text { flex: 1; min-width: 180px; }
    .mt-text strong { display: block; color: var(--text); font-size: 0.97rem; margin-bottom: 0.2rem; }
    .mt-text p { font-size: 0.86rem; color: var(--text-muted); margin: 0; }

    /* VERANSTALTUNG BANNER */
    .veranstaltung-banner {
      max-width: 1060px; margin: 1.2rem auto 0;
      background: var(--white); border: 1px solid var(--border); border-radius: 18px;
      padding: 1.4rem 2rem; display: flex; align-items: center; gap: 1.3rem; flex-wrap: wrap;
    }
    .vb-icon { font-size: 1.7rem; flex-shrink: 0; }
    .vb-text { flex: 1; min-width: 180px; }
    .vb-text strong { display: block; color: var(--text); font-size: 0.95rem; margin-bottom: 0.15rem; }
    .vb-text p { font-size: 0.84rem; color: var(--text-muted); margin: 0; }

    /* TIERVERMIETUNG */
    .tiere-grid {
      max-width: 1060px; margin: 2.5rem auto 0;
      display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem;
    }
    .tier-karte {
      background: var(--white); border: 1.5px solid var(--border); border-radius: 20px; padding: 2rem;
      transition: transform 0.18s, box-shadow 0.18s;
    }
    .tier-karte:hover { transform: translateY(-4px); box-shadow: 0 10px 36px rgba(74,138,63,0.1); }
    .tier-bild { height: 200px; border-radius: 14px; margin-bottom: 1.3rem; }
    .tier-karte .tk-tag { font-size: 0.68rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gruen); margin-bottom: 0.35rem; display: block; }
    .tier-karte h3 { margin-bottom: 0.6rem; }
    .tier-karte p  { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1.1rem; }

    .tiere-leistungen {
      max-width: 1060px; margin: 1.3rem auto 0;
      display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.8rem;
    }
    .tl-item {
      background: var(--gruen-pale); border: 1px solid var(--border);
      border-radius: 14px; padding: 1.2rem; text-align: center;
    }
    .tl-item .tl-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
    .tl-item h4 { font-size: 0.88rem; font-weight: 700; color: var(--text); margin-bottom: 0.3rem; }
    .tl-item p  { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; margin: 0; }

    /* ÜBER MICH */
    .ueber-grid {
      max-width: 1060px; margin: 0 auto;
      display: grid; grid-template-columns: 320px 1fr; gap: 4rem; align-items: start;
    }
    .ueber-foto-box {
      border-radius: 20px 20px 70px 20px; overflow: hidden; height: 420px;
      box-shadow: 0 8px 40px rgba(74,138,63,0.14); flex-shrink: 0;
    }
    .ueber-foto-box img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

    .pills { display: flex; flex-wrap: wrap; gap: 0.45rem; margin: 1.2rem 0 1.6rem; }
    .pill  { background: var(--gruen-light); border: 1px solid var(--border); border-radius: 50px; padding: 0.27rem 0.85rem; font-size: 0.78rem; font-weight: 700; color: var(--gruen-dark); }

    .ref-karten { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
    .ref-karte {
      background: var(--gruen-pale); border: 1px solid var(--border); border-radius: 14px; padding: 1.3rem;
    }
    .ref-karte .rk-quelle {
      font-size: 0.68rem; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase;
      background: var(--gruen); color: var(--white); border-radius: 7px;
      padding: 0.22rem 0.6rem; display: inline-block; margin-bottom: 0.7rem;
    }
    .ref-karte p { font-size: 0.86rem; color: var(--text-mid); line-height: 1.6; margin: 0; }

    .award-box {
      background: linear-gradient(135deg, var(--gold-light), #fff8e8);
      border: 1px solid #e8d5a0; border-radius: 14px; padding: 1.3rem;
      display: flex; align-items: flex-start; gap: 0.8rem; margin-top: 1rem;
    }
    .award-box .aw-icon { font-size: 1.6rem; flex-shrink: 0; margin-top: 0.1rem; }
    .award-box strong { display: block; font-size: 0.9rem; color: var(--text); margin-bottom: 0.2rem; }
    .award-box p { font-size: 0.83rem; color: var(--text-muted); margin: 0; line-height: 1.55; }

    .presse-box {
      max-width: 1060px; margin: 3rem auto 0;
      background: var(--white); border: 1px solid var(--border); border-radius: 18px;
      padding: 1.7rem 2rem; display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
    }
    .presse-box .pb-icon { font-size: 2rem; flex-shrink: 0; }
    .presse-box .pb-text { flex: 1; min-width: 180px; }
    .presse-box .pb-text strong { display: block; color: var(--text); font-size: 0.97rem; margin-bottom: 0.2rem; }
    .presse-box .pb-text p { font-size: 0.86rem; color: var(--text-muted); margin: 0; }

    /* VORHER NACHHER */
    .vn-grid {
      max-width: 1060px; margin: 2rem auto 0;
      display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem;
    }
    .vn-item { border-radius: 18px; overflow: hidden; box-shadow: 0 2px 16px rgba(0,0,0,0.07); }
    .vn-bild { height: 230px; }
    .vn-label-bar { background: var(--white); border-top: 1px solid var(--border); padding: 0.8rem 1.1rem; display: flex; align-items: center; gap: 0.5rem; }
    .badge-v { background: #fde8e8; color: #a83232; font-size: 0.68rem; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.2rem 0.55rem; border-radius: 50px; }
    .badge-w { background: var(--gold-light); color: #8a5a00; font-size: 0.68rem; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.2rem 0.55rem; border-radius: 50px; }
    .badge-n { background: var(--gruen-light); color: var(--gruen-dark); font-size: 0.68rem; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.2rem 0.55rem; border-radius: 50px; }
    .vn-label-bar p { font-size: 0.83rem; color: var(--text-mid); margin: 0; }

    /* NETZWERK */
    .nz-tabs { display: flex; gap: 0.6rem; justify-content: center; margin: 0 auto 2rem; flex-wrap: wrap; }
    .nz-tab { padding: 0.55rem 1.4rem; border-radius: 50px; border: 2px solid var(--border); background: var(--white); font-weight: 700; font-size: 0.88rem; cursor: pointer; color: var(--text-mid); transition: all 0.15s; }
    .nz-tab:hover { border-color: var(--gruen); color: var(--gruen); }
    .nz-tab.active { background: var(--gruen); border-color: var(--gruen); color: var(--white); }
    .nz-panel { display: none; max-width: 640px; margin: 0 auto; }
    .nz-panel.active { display: block; }
    .nz-check-box { background: var(--gruen-pale); border: 2px solid var(--gruen); border-radius: 20px; padding: 2rem 2.2rem; }
    .nz-check-box h3 { margin-bottom: 0.3rem; }
    .nz-check-box p.sub { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 1.3rem; }
    .nz-check-row { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-bottom: 0.9rem; }
    .nz-check-row input, .nz-check-row select { flex: 1; min-width: 130px; padding: 0.65rem 0.9rem; border: 1.5px solid var(--border); border-radius: 10px; font-size: 0.9rem; font-family: inherit; background: var(--white); color: var(--text); outline: none; transition: border-color 0.15s; }
    .nz-check-row input:focus, .nz-check-row select:focus { border-color: var(--gruen); }
    .nz-result { margin-top: 1rem; font-size: 0.9rem; }
    .nz-result-ok  { background: #d8f0d3; border: 1px solid #7ec87a; padding: 1rem 1.2rem; border-radius: 12px; }
    .nz-result-nok { background: #fff8e1; border: 1px solid #f0d060; padding: 1rem 1.2rem; border-radius: 12px; color: #7c5a00; }
    .nz-result-ok strong { color: var(--gruen-dark); display: block; margin-bottom: 0.3rem; }
    .nz-result-nok strong { display: block; margin-bottom: 0.3rem; }
    .nz-result .btn { margin-top: 0.8rem; width: auto; display: inline-flex; padding: 0.55rem 1.3rem; font-size: 0.88rem; border-radius: 8px; }
    .nz-card { border: 1.5px solid var(--border); border-radius: 22px; padding: 2rem; background: var(--white); max-width: 640px; margin: 0 auto; }
    .nz-card .nz-icon { font-size: 1.8rem; margin-bottom: 0.8rem; }
    .nz-card .nz-label { font-size: 0.68rem; font-weight: 900; letter-spacing: 0.13em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 0.4rem; }
    .nz-card h3 { margin-bottom: 0.6rem; }
    .nz-card p  { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1.3rem; }

    /* FAQ */
    .faq-liste { max-width: 700px; margin: 2rem auto 0; }
    details { border: 1px solid var(--border); border-radius: 12px; background: var(--white); margin-bottom: 0.6rem; transition: box-shadow 0.15s; }
    details:hover { box-shadow: 0 2px 12px rgba(74,138,63,0.08); }
    details[open] { border-color: var(--gruen); }
    summary { padding: 1rem 1.3rem; font-weight: 700; font-size: 0.95rem; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
    summary::-webkit-details-marker { display: none; }
    summary::after { content: '+'; font-size: 1.3rem; color: var(--gruen); font-weight: 400; flex-shrink: 0; }
    details[open] summary::after { content: '−'; }
    .faq-body { padding: 0 1.3rem 1.1rem; font-size: 0.91rem; color: var(--text-mid); line-height: 1.72; }

    /* KONTAKT */
    .kontakt-grid { max-width: 860px; margin: 2.5rem auto 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
    .kk {
      background: var(--white); border: 1px solid var(--border);
      border-radius: 18px; padding: 1.8rem;
      box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    }
    .kk.kk-gruen { background: var(--gruen-pale); border-color: var(--gruen); }
    .kk.kk-gold  { background: var(--gold-light); border-color: #e8d5a0; }
    .kk .kk-icon { font-size: 1.5rem; margin-bottom: 0.7rem; }
    .kk h3 { margin-bottom: 0.3rem; }
    .kk a  { color: var(--gruen); text-decoration: none; font-weight: 600; font-size: 0.97rem; word-break: break-all; }
    .kk a:hover { text-decoration: underline; }
    .kk p  { font-size: 0.84rem; color: var(--text-muted); margin-top: 0.22rem; }

    /* CTA FINAL */
    .cta-final {
      background: linear-gradient(135deg, #1c3b18 0%, #2e5a26 100%);
      padding: 5rem 1.5rem; text-align: center; position: relative; overflow: hidden;
    }
    .cta-final::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 60% at 30% 50%, rgba(74,138,63,0.2) 0%, transparent 70%); }
    .cta-final > * { position: relative; z-index: 1; }
    .cta-final h2 { color: var(--white); margin-bottom: 0.9rem; }
    .cta-final p  { color: rgba(255,255,255,0.78); font-size: 1.05rem; margin-bottom: 2rem; max-width: 480px; margin-left: auto; margin-right: auto; }
    .cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

    /* HINWEIS */
    .hinweis { background: #f5f5f3; border-top: 1px solid var(--border); padding: 1.1rem 1.5rem; text-align: center; }
    .hinweis p { font-size: 0.76rem; color: var(--text-muted); max-width: 680px; margin: 0 auto; }

    /* FOOTER */
    footer { background: #0f1c0d; color: rgba(255,255,255,0.5); padding: 2.2rem 1.5rem; }
    .footer-inner { max-width: 1060px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
    .footer-logo { font-weight: 800; font-size: 0.95rem; color: rgba(255,255,255,0.8); text-decoration: none; }
    .footer-links { display: flex; gap: 1.4rem; flex-wrap: wrap; }
    .footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.82rem; transition: color 0.15s; }
    .footer-links a:hover { color: rgba(255,255,255,0.9); }

    /* RESPONSIVE */
    @media (max-width: 960px) {
      .hero-inner       { grid-template-columns: 1fr; }
      .hero-foto-col    { display: flex; justify-content: center; margin-top: 0; order: -1; }
      .foto-pill        { width: 200px; height: 260px; border-radius: 100px 100px 80px 80px; }
      .foto-badge-1, .foto-badge-2 { display: none; }
      .beratung-intro   { grid-template-columns: 1fr; gap: 1.5rem; }
      .pakete-grid      { grid-template-columns: 1fr; }
      .tiere-grid       { grid-template-columns: 1fr; }
      .tiere-leistungen { grid-template-columns: repeat(2, 1fr); }
      .ueber-grid       { grid-template-columns: 1fr; }
      .ueber-foto-box   { height: 260px; border-radius: 18px; }
      .ref-karten       { grid-template-columns: 1fr; }
      .nz-check-row     { flex-direction: row; }
      .vn-grid          { grid-template-columns: 1fr; }
      .kontakt-grid     { grid-template-columns: 1fr; }
    }
    @media (max-width: 660px) {
      nav ul            { display: none; }
      section           { padding: 3.5rem 1rem; }
      .hero-inner       { padding: 3.5rem 1rem 3rem; }
      .tiere-leistungen { grid-template-columns: repeat(2, 1fr); }
      .stats-row        { display: grid; grid-template-columns: 1fr 1fr; }
      .st               { border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
      .st:nth-child(2)  { border-right: none; }
      .st:nth-child(3)  { border-bottom: none; }
      .st:last-child    { border-right: none; border-bottom: none; }
      .footer-inner     { flex-direction: column; text-align: center; }
      .footer-links     { justify-content: center; }
    }

    

    

    /* ============================================================
       JIMDO TEMPLATE OVERRIDE — Korrigiert orange Standardfarben
       ============================================================ */

    /* Überschriften: dunkel statt orange */
    #content h2 { color: var(--text) !important; }
    #content h3 { color: var(--text) !important; }
    #content h4 { color: var(--text) !important; }

    /* Navigation Logo */
    a.nav-logo,
    a.nav-logo:visited { color: var(--text) !important; text-decoration: none !important; }
    a.nav-logo:hover   { color: var(--gruen) !important; }

    /* Alle Links im Content (außer Buttons) */
    #content a:not(.btn),
    #content a:not(.btn):visited { color: var(--gruen) !important; }
    #content a:not(.btn):hover   { color: var(--gruen-dark) !important; }

    /* Buttons – grüner Button (btn-gruen): Text weiß */
    #content .btn-gruen,
    #content .btn-gruen:visited { color: #ffffff !important; }

    /* Buttons – Outline: Text grün */
    #content .btn-outline,
    #content .btn-outline:visited { color: var(--gruen) !important; }

    /* Buttons – White: Text dunkel */
    #content .btn-white,
    #content .btn-white:visited { color: var(--gruen-deeper) !important; }

    /* Buttons – Gold: Text weiß */
    #content .btn-gold,
    #content .btn-gold:visited { color: #ffffff !important; }

    /* Menü-Link (Jimdo mobile nav) */
    #navigation a,
    #navigation a:visited { color: var(--text) !important; text-decoration: none !important; }

    /* Footer Links (Jimdo eigene) */
    #footer a,
    #footer a:visited { color: rgba(255,255,255,0.7) !important; }
    #footer a:hover   { color: #ffffff !important; }

    /* Footer Content Links (unsere eigenen) — höhere Spezifität nötig */
    #content .footer-links a,
    #content .footer-links a:visited { color: rgba(255,255,255,0.8) !important; text-decoration: none !important; }
    #content .footer-links a:hover   { color: #ffffff !important; text-decoration: underline !important; }
    #content .footer-logo,
    #content .footer-logo:visited,
    #content .footer-brand,
    #content .footer-brand:visited   { color: #ffffff !important; text-decoration: none !important; }