/* Extracted from homepage.html, gebaeudereinigung-nuernberg.html, kontakt.html */

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
        :root {
            /* ─── Brand green ramp (OKLCH, hue ~152 "fresh/clean") ─── */
            --green-50:  oklch(0.975 0.013 152);
            --green-100: oklch(0.945 0.030 152);
            --green-200: oklch(0.895 0.055 152);
            --green-300: oklch(0.820 0.090 151);
            --green-400: oklch(0.730 0.130 151);
            --green-500: oklch(0.635 0.155 152);
            --green-600: oklch(0.520 0.135 151);
            --green-700: oklch(0.455 0.115 150);
            --green-800: oklch(0.345 0.085 152);
            --green-900: oklch(0.255 0.055 154);
            --green-950: oklch(0.190 0.040 156);
            /* Legacy aliases (referenced via var() across templates/inline styles) */
            --green:        var(--green-600);
            --green-light:  var(--green-400);
            --green-dark:   var(--green-700);
            --green-darker: var(--green-950);
            --green-pale:   var(--green-100);
            --green-bg:     var(--green-50);
            /* Gold accent */
            --gold:      oklch(0.785 0.150 73);
            --gold-dark: oklch(0.660 0.150 60);
            /* Neutrals — subtly tinted toward brand green */
            --text-dark:  oklch(0.255 0.010 152);
            --text-body:  oklch(0.430 0.012 152);
            --text-muted: oklch(0.510 0.015 152);
            --bg-white:   oklch(0.995 0.003 152);
            --bg-light:   oklch(0.975 0.007 152);
            --border:     oklch(0.910 0.008 152);
            /* Green-tinted shadows (warmer than pure black) */
            --shadow-sm: 0 1px 3px oklch(0.30 0.04 152 / 0.07);
            --shadow-md: 0 4px 12px oklch(0.30 0.04 152 / 0.09);
            --shadow-lg: 0 12px 32px oklch(0.30 0.05 152 / 0.11);
            --shadow-xl: 0 20px 48px oklch(0.30 0.05 152 / 0.13);
            --radius: 16px;
            --radius-sm: 8px;
            --transition: 0.3s ease;
        }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Hanken Grotesk', -apple-system, system-ui, sans-serif;
            color: var(--text-body);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        /* ─── Typography: Bricolage Grotesque (display) + Hanken Grotesk (body) ─── */
        :root{
            --font-display:'Bricolage Grotesque','Hanken Grotesk',-apple-system,sans-serif;
            --font-body:'Hanken Grotesk',-apple-system,system-ui,sans-serif;
            --step-1:clamp(1.06rem,0.99rem + 0.35vw,1.25rem);
            --step-2:clamp(1.2rem,1.05rem + 0.7vw,1.55rem);
            --step-3:clamp(1.45rem,1.2rem + 1.1vw,2.05rem);
            --step-4:clamp(1.85rem,1.45rem + 1.9vw,2.85rem);
            --step-5:clamp(2.3rem,1.7rem + 2.9vw,3.85rem);
        }
        body{font-feature-settings:"kern","liga","calt";}
        h1,h2,h3,h4,h5,h6,.section-title,.hero h1{
            font-family:var(--font-display);
            font-weight:700;
            letter-spacing:-0.02em;
            line-height:1.12;
        }
        h1,.hero h1{letter-spacing:-0.035em;line-height:1.04;}
        h2{letter-spacing:-0.025em;}

        img { max-width:100%; height:auto; display:block; }
        a { text-decoration:none; color:inherit; }
        ul { list-style:none; }
        button { font-family:inherit; cursor:pointer; border:none; background:none; }
        .container { max-width:1200px; margin:0 auto; padding:0 1.5rem; }

        /* ─── Buttons ─── */
        .btn {
            display:inline-flex; align-items:center; gap:0.5rem;
            padding:0.8rem 1.6rem; border-radius:var(--radius-sm);
            font-weight:700; font-size:0.95rem; transition:all var(--transition);
            border:none; cursor:pointer;
        }
        .btn i { width:18px; height:18px; }
        .btn-green { background:var(--green); color:#fff; box-shadow:0 4px 20px oklch(0.55 0.14 151 / 0.3); }
        .btn-green:hover { background:var(--green-dark); transform:translateY(-2px); box-shadow:0 8px 28px oklch(0.55 0.14 151 / 0.4); }
        .btn-gold { background:var(--gold); color:var(--green-950); box-shadow:0 4px 16px rgba(245,158,11,0.3); }
        .btn-gold:hover { background:#d97706; transform:translateY(-2px); }
        .btn-outline-white { background:transparent; color:#fff; border:2px solid rgba(255,255,255,0.4); }
        .btn-outline-white:hover { background:rgba(255,255,255,0.1); border-color:#fff; }
        .btn-outline-green { background:transparent; color:var(--green); border:2px solid var(--green); }
        .btn-outline-green:hover { background:var(--green-pale); }
        .btn-white { background:#fff; color:var(--green-dark); box-shadow:var(--shadow-md); }
        .btn-white:hover { transform:translateY(-2px); box-shadow:var(--shadow-lg); }

        
        /* ─── Hero (Konzept C) ─── */
        .hero {
            position:relative; min-height:100vh; overflow:hidden;
            background:var(--green-darker); margin-top:72px;
        }
        .hero-bg {
            position:absolute; inset:0; opacity:0.3;
        }
        .hero-bg img { width:100%; height:100%; object-fit:cover; }
        .hero-container {
            position:relative; z-index:2; max-width:1200px; margin:0 auto;
            padding:5rem 1.5rem 4rem;
            display:grid; grid-template-columns:1fr 400px; gap:3rem; align-items:center;
            min-height:calc(100vh - 72px);
        }
        .hero-badge {
            display:inline-flex; align-items:center; gap:0.4rem;
            background:rgba(255,255,255,0.12); backdrop-filter:blur(8px);
            border:1px solid rgba(255,255,255,0.18);
            color:#fff; padding:0.45rem 1rem; border-radius:50px;
            font-size:0.82rem; font-weight:600; margin-bottom:1.5rem;
        }
        .hero-badge i { width:14px; height:14px; }
        .hero h1 {
            font-size:3.75rem; font-weight:800; color:#fff;
            line-height:1.08; letter-spacing:-1px; margin-bottom:1.25rem;
        }
        .hero h1 .underline {
            position:relative; display:inline;
        }
        .hero h1 .underline::after {
            content:''; position:absolute; bottom:2px; left:0; width:100%; height:6px;
            background:var(--green-light); opacity:0.4; border-radius:3px;
        }
        .hero .subtitle {
            font-size:1.1rem; color:rgba(255,255,255,0.7);
            margin-bottom:2rem; max-width:500px; line-height:1.7;
        }
        .hero-buttons { display:flex; gap:1rem; margin-bottom:2rem; }
        .hero-features {
            display:grid; grid-template-columns:1fr 1fr; gap:0.75rem;
        }
        .hero-feat {
            display:flex; align-items:center; gap:0.6rem;
            color:rgba(255,255,255,0.7); font-size:0.9rem; font-weight:500;
        }
        .hero-feat i { width:18px; height:18px; color:var(--green-light); flex-shrink:0; }

        /* Hero Form Card */
        .hero-card {
            background:rgba(255,255,255,0.97); border-radius:20px;
            padding:2.5rem; box-shadow:0 20px 60px rgba(0,0,0,0.3);
            position:relative;
        }
        .hero-card::before {
            content:''; position:absolute; top:0; left:0; right:0; height:4px;
            background:linear-gradient(90deg, var(--green), var(--green-light));
            border-radius:20px 20px 0 0;
        }
        .hero-card h3 { font-size:1.3rem; font-weight:700; color:var(--text-dark); margin-bottom:0.35rem; }
        .hero-card-sub { font-size:0.9rem; color:var(--text-muted); margin-bottom:1.5rem; }
        .form-group { margin-bottom:0.75rem; }
        .form-group label {
            display:block; font-size:0.82rem; font-weight:600;
            color:var(--text-dark); margin-bottom:0.3rem;
        }
        .form-group input, .form-group select {
            width:100%; padding:0.65rem 0.85rem;
            border:1.5px solid var(--border); border-radius:var(--radius-sm);
            font-size:0.93rem; font-family:inherit; color:var(--text-dark);
            transition:all var(--transition);
        }
        .form-group input:focus, .form-group select:focus {
            outline:none; border-color:var(--green);
            box-shadow:0 0 0 3px oklch(0.55 0.14 151 / 0.1);
        }
        .form-submit {
            width:100%; padding:0.8rem; margin-top:0.25rem;
            background:var(--green); color:#fff; border:none; border-radius:var(--radius-sm);
            font-weight:700; font-size:0.95rem; cursor:pointer;
            display:flex; align-items:center; justify-content:center; gap:0.5rem;
            transition:all var(--transition);
        }
        .form-submit:hover { background:var(--green-dark); transform:translateY(-1px); }
        .form-submit i { width:18px; height:18px; }
        .form-trust {
            display:flex; align-items:center; gap:0.6rem;
            margin-top:1rem; padding-top:1rem; border-top:1px solid #f0f0f0;
        }
        .stars { display:flex; gap:1px; }
        .stars i, .stars svg { width:14px; height:14px; color:var(--gold); fill:var(--gold); }
        .form-trust span { font-size:0.78rem; color:var(--text-muted); }

        @media (max-width:900px) {
            .hero-container { grid-template-columns:1fr; padding-top:3rem; }
            .hero h1 { font-size:2.5rem; }
        }

        /* ─── Sections Base ─── */
        .section { padding:5rem 0; }
        .section-dark {
            background:linear-gradient(160deg, var(--green-900) 0%, var(--green-950) 100%);
            color:#fff;
        }
        .section-light { background:var(--bg-light); }
        .section-header { text-align:center; margin-bottom:3.5rem; }
        .section-title {
            font-size:2.25rem; font-weight:800; color:var(--text-dark);
            letter-spacing:-0.5px; margin-bottom:0.75rem;
        }
        .section-dark .section-title { color:#fff; }
        .section-title .accent {
            background:linear-gradient(135deg, var(--green), var(--green-light));
            -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
        }
        .section-dark .section-title .accent {
            background:linear-gradient(135deg, var(--green-light), #81c784);
            -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
        }
        .section-subtitle {
            font-size:1.05rem; color:var(--text-muted); max-width:560px; margin:0 auto;
        }
        .section-dark .section-subtitle { color:rgba(255,255,255,0.6); }

        /* ─── Stats Bar (dark, matches hero style) ─── */
        .stats-bar {
            background:linear-gradient(160deg, var(--green-800) 0%, var(--green-950) 60%, var(--green-900) 100%);
            padding:3.5rem 0; position:relative; overflow:hidden;
        }
        .stats-bar::before {
            content:''; position:absolute; top:-50%; left:-10%; width:40%; height:200%;
            background:radial-gradient(ellipse, rgba(76,175,80,0.12) 0%, transparent 70%);
        }
        .stats-grid {
            display:grid; grid-template-columns:repeat(4,1fr); gap:2rem;
            position:relative; z-index:1;
        }
        .stat-item { text-align:center; }
        .stat-number {
            font-size:3rem; font-weight:800; line-height:1; margin-bottom:0.5rem;
            color:#fff;
        }
        .stat-suffix { font-size:1.5rem; color:rgba(255,255,255,0.5); }
        .stat-label { font-size:0.9rem; font-weight:500; color:rgba(255,255,255,0.6); }
        @media (max-width:768px) {
            .stats-grid { grid-template-columns:repeat(2,1fr); gap:1.5rem; }
            .stat-number { font-size:2.25rem; }
        }

        /* ─── Feature Cards (dark bg, white cards) ─── */
        .features-dark { padding:5rem 0; }
        .features-grid {
            display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem;
        }
        .feature-card {
            background:rgba(255,255,255,0.06); backdrop-filter:blur(8px);
            border:1px solid rgba(255,255,255,0.1);
            border-radius:var(--radius); padding:2rem;
            text-align:center; transition:all var(--transition);
            position:relative; overflow:hidden;
        }
        .feature-card::before {
            content:''; position:absolute; top:0; left:0; right:0; height:3px;
            background:linear-gradient(90deg, var(--green), var(--green-light));
            transform:scaleX(0); transition:transform 0.4s ease;
        }
        .feature-card:hover::before { transform:scaleX(1); }
        .feature-card:hover {
            background:rgba(255,255,255,0.1);
            transform:translateY(-4px);
            box-shadow:0 12px 40px rgba(0,0,0,0.2);
        }
        .feature-icon {
            width:56px; height:56px; border-radius:14px;
            background:rgba(76,175,80,0.15);
            display:flex; align-items:center; justify-content:center;
            margin:0 auto 1.25rem;
            transition:all var(--transition);
        }
        .feature-icon i { width:26px; height:26px; color:var(--green-light); }
        .feature-card:hover .feature-icon { background:var(--green); }
        .feature-card:hover .feature-icon i { color:#fff; }
        .feature-card h3 {
            font-size:1.1rem; font-weight:600; color:#fff; margin-bottom:0.75rem;
        }
        .feature-card p { font-size:0.9rem; color:rgba(255,255,255,0.6); line-height:1.7; }
        @media (max-width:768px) { .features-grid { grid-template-columns:1fr; } }

        /* ─── Praxisarten (light bg, green outlined cards) ─── */
        .praxis-grid {
            display:grid; grid-template-columns:repeat(4,1fr); gap:1.5rem;
        }
        .praxis-card {
            background:var(--bg-white); border:1.5px solid var(--border);
            border-radius:var(--radius); padding:2rem; text-align:center;
            transition:all var(--transition); position:relative; overflow:hidden;
        }
        .praxis-card::after {
            content:''; position:absolute; bottom:0; left:0; right:0; height:3px;
            background:linear-gradient(90deg, var(--green), var(--green-light));
            transform:scaleX(0); transition:transform 0.4s ease;
        }
        .praxis-card:hover { border-color:var(--green-pale); transform:translateY(-4px); box-shadow:var(--shadow-lg); }
        .praxis-card:hover::after { transform:scaleX(1); }
        .praxis-icon {
            width:52px; height:52px; border-radius:14px; background:var(--green-pale);
            display:flex; align-items:center; justify-content:center;
            margin:0 auto 1rem; transition:all var(--transition);
        }
        .praxis-icon i { width:24px; height:24px; color:var(--green); }
        .praxis-card:hover .praxis-icon { background:var(--green); }
        .praxis-card:hover .praxis-icon i { color:#fff; }
        .praxis-card h4 { font-size:1rem; font-weight:700; color:var(--text-dark); margin-bottom:0.4rem; }
        .praxis-card p { font-size:0.85rem; color:var(--text-muted); }
        @media (max-width:768px) { .praxis-grid { grid-template-columns:1fr 1fr; } }
        @media (max-width:480px) { .praxis-grid { grid-template-columns:1fr; } }

        /* ─── Pricing (dark bg, 3 cards) ─── */
        .pricing-grid {
            display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; align-items:stretch;
        }
        .pricing-card {
            background:rgba(255,255,255,0.06); backdrop-filter:blur(8px);
            border:1px solid rgba(255,255,255,0.1);
            border-radius:20px; padding:2.25rem; position:relative;
            display:flex; flex-direction:column;
            transition:all var(--transition);
        }
        .pricing-card:hover {
            background:rgba(255,255,255,0.1); transform:translateY(-6px);
            box-shadow:0 20px 60px rgba(0,0,0,0.25);
        }
        .pricing-card::before {
            content:''; position:absolute; top:0; left:0; right:0; height:4px;
            background:linear-gradient(90deg, var(--green), var(--green-light));
            border-radius:20px 20px 0 0; opacity:0.4;
            transition:opacity var(--transition);
        }
        .pricing-card:hover::before { opacity:1; }
        /* Featured card */
        .pricing-card.featured {
            background:rgba(255,255,255,0.97); border:none;
            box-shadow:0 20px 60px rgba(0,0,0,0.3);
            transform:scale(1.04);
        }
        .pricing-card.featured::before { opacity:1; }
        .pricing-card.featured:hover { transform:scale(1.04) translateY(-6px); }
        .pricing-card.featured h3,
        .pricing-card.featured .pricing-price { color:var(--green-dark); }
        .pricing-card.featured .pricing-features li { color:var(--text-body); border-color:#f0f0f0; }
        .pricing-card.featured .pricing-features li i { color:var(--green); }
        .pricing-card.featured .btn-outline-white { background:var(--green); border-color:var(--green); color:#fff; }
        .pricing-card.featured .btn-outline-white:hover { background:var(--green-dark); border-color:var(--green-dark); }
        .pricing-card.featured .pricing-desc { color:var(--text-muted); }
        .pricing-badge {
            position:absolute; top:-14px; left:50%; transform:translateX(-50%);
            background:linear-gradient(135deg, var(--gold), #d97706);
            color:var(--green-950); padding:0.4rem 1.25rem; border-radius:20px;
            font-size:0.78rem; font-weight:700; letter-spacing:0.5px;
            box-shadow:0 4px 12px rgba(245,158,11,0.35);
            white-space:nowrap;
        }
        .pricing-card h3 {
            font-size:1.3rem; font-weight:700; color:#fff; margin-bottom:0.35rem;
        }
        .pricing-desc {
            font-size:0.88rem; color:rgba(255,255,255,0.55); margin-bottom:1.25rem; min-height:40px;
        }
        .pricing-price {
            font-size:2.5rem; font-weight:800; color:#fff; margin-bottom:0.25rem; line-height:1;
        }
        .pricing-price span { font-size:1rem; font-weight:400; opacity:0.6; }
        .pricing-period { font-size:0.82rem; color:rgba(255,255,255,0.45); margin-bottom:1.5rem; }
        .pricing-card.featured .pricing-period { color:var(--text-muted); }
        .pricing-divider {
            height:1px; background:rgba(255,255,255,0.1); margin-bottom:1.25rem;
        }
        .pricing-card.featured .pricing-divider { background:#eee; }
        .pricing-features { margin-bottom:1.75rem; flex:1; }
        .pricing-features li {
            padding:0.45rem 0;
            display:flex; align-items:center; gap:0.65rem;
            font-size:0.88rem; color:rgba(255,255,255,0.7);
        }
        .pricing-features li i { width:16px; height:16px; color:var(--green-light); flex-shrink:0; }
        .pricing-features li.disabled { opacity:0.55; }
        .pricing-features li.disabled i { color:rgba(255,255,255,0.3); }
        .pricing-card.featured .pricing-features li.disabled i { color:#ccc; }
        .pricing-cta { margin-top:auto; }
        .pricing-cta .btn { width:100%; justify-content:center; }
        @media (max-width:900px) { .pricing-grid { grid-template-columns:1fr; max-width:420px; margin:0 auto; } .pricing-card.featured { transform:none; } .pricing-card.featured:hover { transform:translateY(-6px); } }

        /* ─── Testimonials (dark, glass cards) ─── */
        .testimonials-grid {
            display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem;
        }
        .testimonial-card {
            background:rgba(255,255,255,0.06); backdrop-filter:blur(8px);
            border:1px solid rgba(255,255,255,0.1);
            border-radius:var(--radius); padding:2rem;
            display:flex; flex-direction:column; transition:all var(--transition);
            position:relative;
        }
        .testimonial-card:hover {
            background:rgba(255,255,255,0.1); transform:translateY(-4px);
            box-shadow:0 12px 40px rgba(0,0,0,0.2);
        }
        .testimonial-quote {
            position:absolute; top:0.75rem; right:1.25rem;
            font-size:3.5rem; line-height:1; color:rgba(76,175,80,0.2);
            font-family:Georgia, serif; pointer-events:none;
        }
        .testimonial-stars { display:flex; gap:2px; margin-bottom:1rem; }
        .testimonial-stars i, .testimonial-stars svg { width:16px; height:16px; color:var(--gold); fill:var(--gold); }
        .testimonial-text {
            color:rgba(255,255,255,0.8); line-height:1.8; font-size:0.93rem;
            flex:1; margin-bottom:1.25rem;
        }
        .testimonial-author { border-top:1px solid rgba(255,255,255,0.1); padding-top:1rem; }
        .testimonial-name { font-weight:600; color:#fff; font-size:0.93rem; }
        .testimonial-loc { font-size:0.82rem; color:rgba(255,255,255,0.5); }
        @media (max-width:768px) { .testimonials-grid { grid-template-columns:1fr; } }

        /* ─── FAQ (light bg) ─── */
        .faq-wrap { max-width:780px; margin:0 auto; }
        .faq-item {
            border:1.5px solid var(--border); border-radius:var(--radius-sm);
            margin-bottom:0.75rem; background:var(--bg-white); overflow:hidden;
            transition:all var(--transition);
        }
        .faq-item:hover { border-color:var(--green-pale); box-shadow:var(--shadow-sm); }
        .faq-question {
            padding:1.25rem 1.5rem; display:flex; justify-content:space-between;
            align-items:center; cursor:pointer; font-weight:600;
            color:var(--text-dark); font-size:0.95rem;
        }
        .faq-question:hover { background:var(--bg-light); }
        .faq-chevron {
            width:28px; height:28px; border-radius:50%; background:var(--bg-light);
            display:flex; align-items:center; justify-content:center; flex-shrink:0;
            transition:all var(--transition);
        }
        .faq-chevron i { width:16px; height:16px; color:var(--green); transition:transform var(--transition); }
        .faq-item.active .faq-chevron { background:var(--green); }
        .faq-item.active .faq-chevron i { color:#fff; transform:rotate(180deg); }
        .faq-answer { max-height:0; overflow:hidden; transition:max-height 0.35s ease; }
        .faq-item.active .faq-answer { max-height:400px; }
        .faq-answer-inner {
            padding:0 1.5rem 1.5rem; color:var(--text-body); line-height:1.8; font-size:0.93rem;
        }

        /* ─── Map (light bg) ─── */
        .map-grid {
            display:grid; grid-template-columns:2fr 1fr; gap:2.5rem;
        }
        .map-wrap {
            border-radius:var(--radius); overflow:hidden;
            box-shadow:var(--shadow-lg); border:1px solid var(--border);
        }
        .map-wrap iframe { width:100%; height:400px; border:none; display:block; }
        .transport-item { margin-bottom:1.5rem; }
        .transport-item h4 {
            font-size:0.95rem; font-weight:600; color:var(--text-dark);
            margin-bottom:0.4rem; display:flex; align-items:center; gap:0.5rem;
        }
        .transport-item h4 i { width:18px; height:18px; color:var(--green); }
        .transport-item p { font-size:0.9rem; color:var(--text-muted); line-height:1.7; }
        @media (max-width:768px) { .map-grid { grid-template-columns:1fr; } }

        /* ─── Team (dark bg, same style) ─── */
        .team-grid {
            display:grid; grid-template-columns:320px 1fr; gap:3rem; align-items:center;
        }
        .team-photo {
            border-radius:var(--radius); overflow:hidden;
            box-shadow:0 20px 60px rgba(0,0,0,0.3);
            border:1px solid rgba(255,255,255,0.1);
        }
        .team-photo img { width:100%; height:420px; object-fit:cover; }
        .team-badge-tag {
            display:inline-flex; align-items:center; gap:0.4rem;
            background:rgba(76,175,80,0.2); border:1px solid rgba(76,175,80,0.3);
            color:var(--green-light); padding:0.4rem 0.9rem; border-radius:50px;
            font-size:0.8rem; font-weight:600; margin-bottom:1rem;
        }
        .team-badge-tag i { width:14px; height:14px; }
        .team-text h2 { font-size:1.75rem; font-weight:700; color:#fff; margin-bottom:0.75rem; }
        .team-name { font-weight:600; color:var(--green-light); margin-bottom:0.5rem; font-size:1.05rem; }
        .team-text p { color:rgba(255,255,255,0.7); margin-bottom:1rem; line-height:1.8; }
        @media (max-width:768px) { .team-grid { grid-template-columns:1fr; } .team-photo img { height:300px; } }

        /* ─── Cross-Sell (light bg) ─── */
        .cross-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }
        .cross-card {
            border-radius:var(--radius); overflow:hidden; background:var(--bg-white);
            border:1.5px solid var(--border); transition:all var(--transition);
        }
        .cross-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-lg); border-color:var(--green-pale); }
        .cross-img { height:200px; overflow:hidden; }
        .cross-img img { width:100%; height:100%; object-fit:cover; transition:transform 0.5s ease; }
        .cross-card:hover .cross-img img { transform:scale(1.08); }
        .cross-body { padding:1.5rem; }
        .cross-body h3 { font-size:1.1rem; font-weight:600; color:var(--text-dark); margin-bottom:0.5rem; }
        .cross-body p { font-size:0.9rem; color:var(--text-muted); margin-bottom:1rem; }
        .cross-link {
            font-weight:600; font-size:0.9rem; color:var(--green);
            display:inline-flex; align-items:center; gap:0.35rem; transition:gap var(--transition);
        }
        .cross-link:hover { gap:0.65rem; }
        .cross-link i { width:16px; height:16px; }
        @media (max-width:768px) { .cross-grid { grid-template-columns:1fr; } }

        /* ─── CTA Banner (green gradient) ─── */
        .cta-banner {
            position:relative; padding:5rem 0;
            background:linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
            overflow:hidden;
        }
        .cta-banner::before {
            content:''; position:absolute; inset:0;
            background:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23fff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }
        .cta-inner { position:relative; z-index:1; text-align:center; max-width:700px; margin:0 auto; }
        .cta-inner h2 { font-size:2.25rem; font-weight:800; color:#fff; margin-bottom:1rem; }
        .cta-inner p { font-size:1.1rem; color:rgba(255,255,255,0.85); margin-bottom:2rem; line-height:1.7; }
        .cta-buttons { display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; }

        /* ─── Trust Bar ─── */
        .trust-bar {
            background:var(--green-darker); color:#fff; padding:1.75rem 0;
        }
        .trust-bar-inner {
            display:flex; justify-content:space-around; align-items:center; flex-wrap:wrap; gap:1.5rem;
        }
        .trust-item {
            display:flex; align-items:center; gap:0.6rem;
            font-size:0.88rem; font-weight:500; opacity:0.8;
        }
        .trust-item i { width:20px; height:20px; }
        @media (max-width:768px) { .trust-bar-inner { flex-direction:column; gap:0.75rem; } }

        /* ─── Breadcrumbs ─── */
        .breadcrumbs {
            padding:0.75rem 0; background:var(--bg-light);
            border-bottom:1px solid var(--border); font-size:0.85rem; color:var(--text-muted);
        }
        .breadcrumbs a { color:var(--green); }
        .breadcrumbs a:hover { text-decoration:underline; }
        .breadcrumbs span { margin:0 0.4rem; }
        .breadcrumbs strong { color:var(--text-dark); font-weight:600; }

        /* ─── Stadtteile ─── */
        .stadtteile { text-align:center; max-width:800px; margin:0 auto; }
        .stadtteile p { color:var(--text-muted); line-height:1.8; font-size:0.93rem; }
        .stadtteile a { color:var(--green); font-weight:600; }

        /* ─── Footer ─── */
        .footer { background:#111; color:#fff; padding:4rem 0 1.5rem; }
        .footer-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:2.5rem; margin-bottom:2.5rem; }
        .footer-col h4 { font-size:0.95rem; font-weight:600; color:var(--green-light); margin-bottom:1.25rem; }
        .footer-col li { margin-bottom:0.6rem; }
        .footer-col a { color:#a0a0a0; font-size:0.9rem; transition:color var(--transition); }
        .footer-col a:hover { color:var(--green-light); }
        .footer-text { color:#a0a0a0; font-size:0.9rem; line-height:1.7; }
        .footer-social { display:flex; gap:0.75rem; margin-top:1.25rem; }
        .footer-social a {
            width:38px; height:38px; border-radius:50%;
            background:rgba(255,255,255,0.08);
            display:flex; align-items:center; justify-content:center;
            transition:all var(--transition);
        }
        .footer-social a:hover { background:var(--green); }
        .footer-social a i { width:18px; height:18px; }
        .footer-bottom {
            text-align:center; padding-top:1.75rem;
            border-top:1px solid rgba(255,255,255,0.08);
            color:#9a9a9a; font-size:0.82rem;
        }
        @media (max-width:768px) { .footer-grid { grid-template-columns:1fr; } }

        /* ─── Sticky CTA ─── */
        .sticky-cta {
            position:fixed; bottom:1.5rem; right:1.5rem; z-index:1000;
            background:var(--green); color:#fff;
            padding:0.875rem 1.25rem; border-radius:var(--radius-sm);
            box-shadow:0 6px 24px oklch(0.55 0.14 151 / 0.35);
            display:flex; align-items:center; gap:0.6rem;
            font-weight:600; font-size:0.9rem;
            opacity:0; transform:translateY(20px); pointer-events:none;
            transition:all var(--transition);
        }
        .sticky-cta.visible { opacity:1; transform:translateY(0); pointer-events:auto; }
        .sticky-cta:hover { background:var(--green-dark); transform:translateY(-2px); }
        .sticky-cta i { width:20px; height:20px; }
        @media (max-width:768px) {
            .sticky-cta span { display:none; }
            .sticky-cta { padding:0.8rem; border-radius:50%; }
        }

        /* ─── Reveal Animations (JS-gated; content stays visible if JS/observer absent) ─── */
        .reveal, .reveal-stagger > * { opacity:1; transform:none; }
        @media (prefers-reduced-motion: no-preference) {
            html.js .reveal { opacity:0; transform:translateY(24px); transition:opacity 0.6s cubic-bezier(.22,1,.36,1), transform 0.6s cubic-bezier(.22,1,.36,1); }
            html.js .reveal.visible { opacity:1; transform:translateY(0); }
            html.js .reveal-stagger > * { opacity:0; transform:translateY(18px); transition:opacity 0.55s cubic-bezier(.22,1,.36,1), transform 0.55s cubic-bezier(.22,1,.36,1); }
            html.js .reveal-stagger.visible > * { opacity:1; transform:translateY(0); }
            html.js .reveal-stagger.visible > *:nth-child(1){transition-delay:0.05s}
            html.js .reveal-stagger.visible > *:nth-child(2){transition-delay:0.10s}
            html.js .reveal-stagger.visible > *:nth-child(3){transition-delay:0.15s}
            html.js .reveal-stagger.visible > *:nth-child(4){transition-delay:0.20s}
            html.js .reveal-stagger.visible > *:nth-child(5){transition-delay:0.25s}
            html.js .reveal-stagger.visible > *:nth-child(6){transition-delay:0.30s}
            html.js .reveal-stagger.visible > *:nth-child(7){transition-delay:0.35s}
            html.js .reveal-stagger.visible > *:nth-child(8){transition-delay:0.40s}
            html.js .reveal-stagger.visible > *:nth-child(9){transition-delay:0.45s}
            html.js .reveal-stagger.visible > *:nth-child(10){transition-delay:0.50s}
            html.js .reveal-stagger.visible > *:nth-child(11){transition-delay:0.55s}
            html.js .reveal-stagger.visible > *:nth-child(12){transition-delay:0.60s}
        }
    
        
    
        
        /* Dropdown */
        .nav-dropdown { position:relative; }
        .nav-dropdown-trigger { display:flex; align-items:center; cursor:pointer; background:none; border:none; font-family:inherit; }
        .nav-dropdown-menu {
            position:absolute; top:100%; left:50%; transform:translateX(-50%) translateY(8px);
            background:#fff; border-radius:16px; box-shadow:0 25px 60px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.04);
            padding:0; opacity:0; visibility:hidden; pointer-events:none;
            transition:all 0.25s cubic-bezier(0.16,1,0.3,1); z-index:1001; overflow:hidden;
        }
        .nav-dropdown-menu { padding-top:12px !important; }
        .nav-dropdown:hover .nav-dropdown-menu {
            opacity:1; visibility:visible; pointer-events:auto; transform:translateX(-50%) translateY(0);
        }

        /* City Bar */

        /* Mobile Sticky CTA */
        .mobile-sticky-cta {
            display:none; position:fixed; bottom:0; left:0; right:0; z-index:9999;
            padding:0.6rem; background:rgba(255,255,255,0.97); backdrop-filter:blur(12px);
            border-top:1px solid var(--border); box-shadow:0 -4px 20px rgba(0,0,0,0.08);
            gap:0.5rem;
        }
        .mobile-sticky-btn {
            flex:1; display:flex; align-items:center; justify-content:center; gap:0.5rem;
            padding:0.75rem; border-radius:var(--radius-sm); font-weight:700; font-size:0.9rem;
            text-decoration:none; transition:all 0.2s;
        }
        .mobile-sticky-call { background:var(--bg-light); color:var(--text-dark); border:1px solid var(--border); }
        .mobile-sticky-anfrage { background:var(--green); color:#fff; box-shadow:0 4px 16px oklch(0.55 0.14 151 / 0.3); }

        @media (max-width: 900px) {
            .nav-links, .nav-right { display:none; }
            .mobile-toggle { display:flex !important; }
            .mobile-sticky-cta { display:flex; }
            body { padding-bottom:70px; }
        }
        @media (min-width: 901px) {
            .mobile-toggle { display:none !important; }
            .mobile-sticky-cta { display:none !important; }
        }

    
        /* ─── Navbar Minimal ─── */
        .navbar { position:fixed; top:0; width:100%; z-index:1000; background:rgba(255,255,255,0.97); backdrop-filter:blur(12px); border-bottom:1px solid var(--border); }
        .navbar.scrolled { box-shadow:var(--shadow-md); }
        .navbar-inner { display:flex; align-items:center; justify-content:space-between; height:64px; }
        .navbar-logo-text { font-size:1.35rem; font-weight:800; color:var(--text-dark); }
        .navbar-logo-text span { color:var(--green); }
        .navbar-logo { display:flex; align-items:center; }
        .navbar-logo .custom-logo-link { display:flex; align-items:center; }
        .navbar-logo img.custom-logo { height:40px; width:auto; max-width:none; display:block; }

        /* ─── Referenzkunden-Leiste ─── */
        .green-refs img { filter:none; opacity:1; }
        @media (max-width:640px) {
            .green-refs { column-gap:1.5rem !important; }
            .green-refs img { height:auto !important; max-height:34px; max-width:140px; }
        }

        .nav-links { display:flex; align-items:center; gap:2rem; }
        .nav-links > a, .nav-dropdown-trigger { font-size:0.85rem; font-weight:700; text-transform:uppercase; letter-spacing:0.5px; color:var(--text-body); transition:color 0.2s; cursor:pointer; background:none; border:none; font-family:inherit; display:flex; align-items:center; }
        .nav-links > a:hover, .nav-dropdown-trigger:hover { color:var(--green); }
        .nav-cta { padding:0.55rem 1.3rem !important; font-size:0.88rem !important; display:flex; align-items:center; gap:0.4rem; white-space:nowrap; }

        /* Simple Dropdown */
        .nav-dropdown { position:relative; }
        .nav-dropdown-menu {
            position:absolute; top:100%; left:0;
            background:#fff; border-radius:12px; box-shadow:0 20px 50px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.04);
            padding:0.5rem 0; min-width:220px;
            opacity:0; visibility:hidden; pointer-events:none;
            transition:all 0.2s cubic-bezier(0.16,1,0.3,1); transform:translateY(4px);
        }
        .nav-dropdown-menu { padding-top:12px !important; }
        .nav-dropdown:hover .nav-dropdown-menu { opacity:1; visibility:visible; pointer-events:auto; transform:translateY(0); }
        .nav-dropdown-menu a {
            display:block; padding:0.5rem 1.2rem; font-size:0.88rem; color:var(--text-body); transition:all 0.15s;
        }
        .nav-dropdown-menu a:hover { background:var(--green-pale); color:var(--green); }
        .nav-dropdown-divider { height:1px; background:var(--border); margin:0.4rem 1rem; }
        .nav-dropdown-all { color:var(--green) !important; font-weight:600; }

        /* Mobile Sticky CTA */
        .mobile-sticky-cta {
            display:none; position:fixed; bottom:0; left:0; right:0; z-index:9999;
            padding:0.6rem; background:rgba(255,255,255,0.97); backdrop-filter:blur(12px);
            border-top:1px solid var(--border); box-shadow:0 -4px 20px rgba(0,0,0,0.08); gap:0.5rem;
        }
        .mobile-sticky-btn {
            flex:1; display:flex; align-items:center; justify-content:center; gap:0.5rem;
            padding:0.75rem; border-radius:var(--radius-sm); font-weight:700; font-size:0.9rem; text-decoration:none;
        }
        .mobile-sticky-call { background:var(--bg-light); color:var(--text-dark); border:1px solid var(--border); }
        .mobile-sticky-anfrage { background:var(--green); color:#fff; box-shadow:0 4px 16px oklch(0.55 0.14 151 / 0.3); }
        .mobile-toggle { display:none; width:44px; height:44px; align-items:center; justify-content:center; background:none; border:none; cursor:pointer; color:#1a2e1a; padding:8px; -webkit-tap-highlight-color:transparent; touch-action:manipulation; }

        @media (max-width: 768px) {
            .nav-links, .nav-cta { display:none; }
            .mobile-toggle { display:flex !important; }
            .mobile-sticky-cta { display:flex; }
            body { padding-bottom:70px; }
        }

    
        /* Hero responsive */
        @media (max-width: 900px) {
            .container [style*="grid-template-columns:1fr 420px"] {
                grid-template-columns: 1fr !important;
            }
        }

    
        .hero-grid { display:grid; grid-template-columns:1fr 420px; gap:3rem; align-items:center; }
        @media (max-width: 900px) {
            .hero-grid { grid-template-columns:1fr !important; }
        }

    

    
        /* Mobile Menu */
        .mobile-menu-overlay { display:none; position:fixed; inset:0; background:rgba(0,0,0,0.5); z-index:9998; }
        .mobile-menu-overlay.active { display:block; }
        .mobile-menu { position:fixed; top:0; right:-300px; width:280px; height:100%; background:#fff; z-index:9999; transition:right 0.3s ease; box-shadow:-4px 0 20px rgba(0,0,0,0.15); padding:5rem 1.5rem 2rem; overflow-y:auto; }
        .mobile-menu.active { right:0; }
        .mobile-menu a { display:block; padding:0.75rem 0; font-size:1rem; font-weight:500; color:#1a2e1a; text-decoration:none; border-bottom:1px solid rgba(0,0,0,0.06); }
        .mobile-menu a:hover { color:var(--green); }
        .mobile-menu .mobile-menu-divider { height:1px; background:rgba(0,0,0,0.1); margin:0.5rem 0; }
        .mobile-menu .mobile-menu-cta { display:flex; align-items:center; justify-content:center; gap:0.5rem; margin-top:1rem; padding:0.8rem; background:var(--green); color:#fff; border-radius:8px; font-weight:600; }
        .mobile-menu-close { position:absolute; top:1rem; right:1rem; width:36px; height:36px; display:flex; align-items:center; justify-content:center; background:none; border:none; font-size:1.5rem; cursor:pointer; color:#666; }


        /* Global mobile grid fix */
        @media (max-width:768px) {
            .hero-grid, [class*="hero-grid"] { grid-template-columns:1fr !important; }
            .container > [style*="grid-template-columns:1fr 1fr"],
            .container > [style*="grid-template-columns:1fr 400px"],
            .container > div > [style*="grid-template-columns:1fr 1fr"] { grid-template-columns:1fr !important; }
        }

        /* Mobile H1 sizing */
        @media (max-width:480px) {
            .hero h1 { font-size:1.75rem !important; line-height:1.2 !important; }
        }
        @media (min-width:481px) and (max-width:768px) {
            .hero h1 { font-size:2rem !important; }
        }


        /* ─── Kontakt mobile fixes ─── */
        .kontakt-grid { display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:start; }
        .kontakt-form-row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; margin-bottom:1rem; }
        @media (max-width:768px) {
            .kontakt-grid { grid-template-columns:1fr !important; gap:2rem; }
            .kontakt-form-row { grid-template-columns:1fr !important; }
        }

/* ================= WordPress Ergänzungen ================= */
body{padding-top:64px;}
body.wp-admin{padding-top:0;}
.wp-site-blocks{overflow-x:hidden;}
.wp-block-image img{height:auto;max-width:100%;}
.wp-block{max-width:1200px;margin-left:auto;margin-right:auto;}
.alignwide{max-width:1200px;margin-left:auto;margin-right:auto;}
.alignfull{width:100vw;max-width:100vw;margin-left:calc(50% - 50vw);margin-right:calc(50% - 50vw);}
.wp-block-group,.wp-block-columns,.wp-block-cover{margin-bottom:1.5rem;}
.entry-content > *{margin-bottom:1.25rem;}
.entry-content h1,.entry-content h2,.entry-content h3,.entry-content h4{color:var(--text-dark);line-height:1.25;}
.entry-content a{color:var(--green-dark);text-decoration:underline;}
.entry-content ul,.entry-content ol{padding-left:1.25rem;}
.screen-reader-text{position:absolute;left:-9999px;}

        /* ─── Home: Leistungen (arrange) ─── */
        .svc-head { display:flex; align-items:flex-end; justify-content:space-between; gap:1.5rem; flex-wrap:wrap; margin-bottom:2.5rem; }
        .svc-head .svc-head-tt { text-align:left; }
        .svc-head h2 { font-size:var(--step-4); margin-bottom:0.4rem; }
        .svc-head p { color:var(--text-muted); max-width:48ch; }
        .svc-all { color:var(--green-dark); font-weight:600; white-space:nowrap; display:inline-flex; align-items:center; gap:0.4rem; transition:gap .2s; }
        .svc-all:hover { gap:0.75rem; }
        .svc-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1rem; }
        @media (max-width:900px){ .svc-grid { grid-template-columns:repeat(2,1fr); } }
        @media (max-width:560px){ .svc-grid { grid-template-columns:1fr; } }
        .svc-card { display:flex; align-items:flex-start; gap:1rem; background:var(--bg-white); border:1px solid var(--border); border-radius:14px; padding:1.25rem 1.35rem; transition:transform .2s, box-shadow .2s, border-color .2s; }
        .svc-card:hover { transform:translateY(-3px); box-shadow:var(--shadow-lg); border-color:var(--green-200); }
        .svc-ico { flex-shrink:0; width:42px; height:42px; border-radius:10px; background:var(--green-50); display:flex; align-items:center; justify-content:center; color:var(--green-dark); transition:background .2s, color .2s; }
        .svc-ico i { width:21px; height:21px; }
        .svc-card:hover .svc-ico { background:var(--green); color:#fff; }
        .svc-tt { font-family:var(--font-display); font-weight:700; color:var(--text-dark); font-size:1.02rem; line-height:1.25; margin-bottom:0.15rem; letter-spacing:-0.01em; }
        .svc-ds { font-size:0.85rem; color:var(--text-muted); line-height:1.5; }
        .svc-cta { display:flex; flex-direction:column; justify-content:center; gap:0.35rem; background:linear-gradient(135deg, var(--green-700), var(--green-900)); color:#fff; border-radius:14px; padding:1.35rem; transition:transform .2s, box-shadow .2s; }
        .svc-cta:hover { transform:translateY(-3px); box-shadow:var(--shadow-lg); }
        .svc-cta-tt { font-family:var(--font-display); font-weight:700; font-size:1.05rem; display:flex; align-items:center; gap:0.5rem; }
        .svc-cta-ds { font-size:0.85rem; opacity:0.85; }

        /* ─── Home: Zertifikate trust strip (compact chips) ─── */
        .cert-row { display:flex; flex-wrap:wrap; justify-content:center; align-items:stretch; gap:0.85rem; }
        .cert-item { display:flex; flex-direction:column; align-items:center; justify-content:center; gap:0.55rem; background:var(--bg-white); border:1px solid var(--border); border-radius:12px; padding:0.85rem 1.35rem; min-width:128px; transition:border-color .2s, box-shadow .2s; }
        .cert-item:hover { border-color:var(--green-200); box-shadow:var(--shadow-sm); }
        .cert-item img { height:34px; width:auto; object-fit:contain; }
        .cert-item .cert-label { font-size:0.76rem; color:var(--text-muted); font-weight:600; }

        /* ─── Contact Form 7 styling (delight) — applies to hero + kontakt + service pages ─── */
        .wpcf7-form p { margin:0; }

        /* CF7: sichtbare Labels + Trust-Microcopy */
        .wpcf7-form .gf-label { display:block; font-size:0.78rem; font-weight:700; color:var(--text-dark); margin:0 0 0.25rem; letter-spacing:0.01em; }
        .wpcf7-form .gf-opt { font-weight:500; color:var(--text-muted); font-size:0.74rem; }
        .wpcf7-form .gf-trust { margin-top:0.7rem; text-align:center; font-size:0.76rem; color:var(--text-muted); }
        .wpcf7-form br { display:none; }
        .wpcf7-form .wpcf7-form-control-wrap { display:block; margin-bottom:0.7rem; }
        .wpcf7-form input.wpcf7-form-control:not([type=submit]):not([type=checkbox]):not([type=radio]),
        .wpcf7-form textarea.wpcf7-form-control,
        .wpcf7-form select.wpcf7-form-control {
            width:100%; padding:0.72rem 0.9rem; font-family:inherit; font-size:0.95rem;
            color:var(--text-dark); background:var(--bg-white);
            border:1.5px solid var(--border); border-radius:var(--radius-sm);
            transition:border-color .2s, box-shadow .2s; appearance:none; -webkit-appearance:none;
        }
        .wpcf7-form textarea.wpcf7-form-control { min-height:120px; resize:vertical; line-height:1.6; }
        .wpcf7-form select.wpcf7-form-control {
            background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%2334795a' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
            background-repeat:no-repeat; background-position:right 0.8rem center; background-size:18px;
            padding-right:2.5rem; cursor:pointer;
        }
        .wpcf7-form input.wpcf7-form-control:focus,
        .wpcf7-form textarea.wpcf7-form-control:focus,
        .wpcf7-form select.wpcf7-form-control:focus {
            outline:none; border-color:var(--green); box-shadow:0 0 0 3px var(--green-100);
        }
        .wpcf7-form input::placeholder, .wpcf7-form textarea::placeholder { color:var(--text-muted); opacity:0.85; }
        .wpcf7-form .wpcf7-submit {
            width:100%; margin-top:0.4rem; padding:0.85rem 1.4rem;
            background:var(--green); color:#fff; border:none; border-radius:var(--radius-sm);
            font-family:var(--font-display); font-weight:700; font-size:0.98rem; cursor:pointer;
            box-shadow:0 6px 18px oklch(0.55 0.14 151 / 0.30);
            transition:transform .18s cubic-bezier(.25,1,.5,1), background .2s, box-shadow .2s;
        }
        .wpcf7-form .wpcf7-submit:hover { background:var(--green-dark); transform:translateY(-2px); box-shadow:0 10px 26px oklch(0.55 0.14 151 / 0.38); }
        .wpcf7-form .wpcf7-submit:active { transform:translateY(0); }
        .wpcf7-form .wpcf7-spinner { margin:0.6rem auto 0; display:block; }
        .wpcf7-form .wpcf7-not-valid { border-color:oklch(0.62 0.20 25) !important; }
        .wpcf7-form .wpcf7-not-valid-tip { color:oklch(0.55 0.21 25); font-size:0.78rem; margin-top:0.25rem; display:block; }
        .wpcf7-form .wpcf7-response-output { border-radius:var(--radius-sm); font-size:0.85rem; margin:0.8rem 0 0; padding:0.7rem 0.9rem; }

        /* ─── <details> FAQ polish ─── */
        details > summary { list-style:none; position:relative; padding-right:2.6rem !important; }
        details > summary::-webkit-details-marker { display:none; }
        details > summary::after { content:''; position:absolute; right:1.1rem; top:50%; width:9px; height:9px; border-right:2px solid var(--green-dark); border-bottom:2px solid var(--green-dark); transform:translateY(-70%) rotate(45deg); transition:transform .25s; }
        details[open] > summary::after { transform:translateY(-30%) rotate(225deg); }

        /* ─── Light variants for glass cards (sections converted from dark) ─── */
        .section-light .feature-card { background:var(--bg-white); border:1.5px solid var(--border); backdrop-filter:none; }
        .section-light .feature-card:hover { background:var(--bg-white); box-shadow:var(--shadow-lg); border-color:var(--green-200); }
        .section-light .feature-card h3 { color:var(--text-dark); }
        .section-light .feature-card p { color:var(--text-muted); }
        .section-light .feature-icon { background:var(--green-100); }
        .section-light .feature-icon i, .section-light .feature-icon svg { color:var(--green-dark); }
        .section-light .testimonial-card { background:var(--bg-white); border:1.5px solid var(--border); backdrop-filter:none; }
        .section-light .testimonial-card:hover { background:var(--bg-white); box-shadow:var(--shadow-lg); transform:translateY(-4px); }
        .section-light .testimonial-text { color:var(--text-body); }
        .section-light .testimonial-name { color:var(--text-dark); }
        .section-light .testimonial-loc { color:var(--text-muted); }
        .section-light .testimonial-author { border-top-color:var(--border); }
        .section-light .testimonial-quote { color:var(--green-200); }

        /* ─── Readable measure for long text sections ─── */
        .section .container > p { max-width:75ch; margin-left:auto; margin-right:auto; }

        /* ─── A11y: In-Text-Links erkennbar machen (WCAG 1.4.1) ─── */
        .section p a:not([class]), .entry-content p a:not([class]),
        p > a[style*="color:var(--green)"] { text-decoration:underline; text-underline-offset:2px; }
