
        *, *::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 ─── */
        .reveal {
            opacity:0; transform:translateY(24px);
            transition:opacity 0.6s ease, transform 0.6s ease;
        }
        .reveal.visible { opacity:1; transform:translateY(0); }
        .reveal-stagger > * {
            opacity:0; transform:translateY(20px);
            transition:opacity 0.5s ease, transform 0.5s ease;
        }
        .reveal-stagger.visible > * { opacity:1; transform:translateY(0); }
        .reveal-stagger.visible > *:nth-child(1) { transition-delay:0.05s; }
        .reveal-stagger.visible > *:nth-child(2) { transition-delay:0.1s; }
        .reveal-stagger.visible > *:nth-child(3) { transition-delay:0.15s; }
        .reveal-stagger.visible > *:nth-child(4) { transition-delay:0.2s; }
        .reveal-stagger.visible > *:nth-child(5) { transition-delay:0.25s; }
        .reveal-stagger.visible > *:nth-child(6) { transition-delay:0.3s; }
    
        
    
        
        /* 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-grid-resp { display:grid; grid-template-columns:1fr 420px; gap:3rem; align-items:center; }
        @media (max-width: 900px) { .hero-grid-resp { grid-template-columns:1fr !important; } }
    
        /* Fix: reveal visible by default (JS adds animation) */
        .reveal, .reveal-stagger > * { opacity:1 !important; transform:none !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; }
        }

/* ═══════════════════════════════════════════════
   MOBILE-FIX: Auto-generated responsive styles
   ═══════════════════════════════════════════════ */

/* ─── Viewport & Global ─── */
@media (max-width: 768px) {
    html, body { overflow-x: hidden; }
    img { max-width: 100%; height: auto; }

    /* ─── Container ─── */
    .container { padding: 0 1rem !important; }

    /* ─── Typography ─── */
    h1 { font-size: clamp(1.6rem, 6vw, 2.2rem) !important; line-height: 1.25 !important; }
    h2 { font-size: clamp(1.3rem, 5vw, 1.8rem) !important; line-height: 1.3 !important; }
    h3 { font-size: clamp(1.1rem, 4vw, 1.4rem) !important; }
    p, li, td, th { font-size: 15px !important; line-height: 1.6 !important; }

    /* ─── Sections padding ─── */
    section, .section { padding: 2.5rem 0 !important; }
    .section-header { margin-bottom: 1.5rem !important; }
    .section-title { font-size: clamp(1.3rem, 5vw, 1.8rem) !important; }

    /* ─── Hero ─── */
    .hero { min-height: auto !important; padding-top: 1rem !important; }
    .hero-container, .hero .container {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        padding: 2rem 1rem !important;
        min-height: auto !important;
    }
    .hero h1 { font-size: clamp(1.6rem, 6vw, 2.2rem) !important; }
    .hero-card, .hero-form-card {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
    }
    .hero-content { text-align: center !important; }
    .hero-actions { flex-direction: column !important; width: 100% !important; }
    .hero-actions .btn { width: 100% !important; justify-content: center !important; }

    /* ─── Navigation ─── */
    nav .nav-links, nav .nav-menu {
        display: none !important;
    }
    nav .nav-links.open, nav .nav-menu.open {
        display: flex !important;
        flex-direction: column !important;
        position: fixed !important;
        top: 0 !important; left: 0 !important; right: 0 !important; bottom: 0 !important;
        background: rgba(0,0,0,0.95) !important;
        z-index: 9999 !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 2rem !important;
    }
    nav .burger, nav .hamburger, nav .nav-toggle, nav #burger-btn {
        display: flex !important;
        min-width: 44px !important; min-height: 44px !important;
        align-items: center !important; justify-content: center !important;
    }

    /* ─── Buttons ─── */
    .btn { min-height: 44px !important; padding: 0.75rem 1.2rem !important; }
    .btn-group, .cta-group, .action-group {
        flex-direction: column !important;
        width: 100% !important;
        gap: 0.75rem !important;
    }
    .btn-group .btn, .cta-group .btn { width: 100% !important; justify-content: center !important; }

    /* ─── Grids → Stack ─── */
    .grid, [class*="grid-"] {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    .features-grid, .services-grid, .benefits-grid,
    .cards-grid, .team-grid, .pricing-grid, .stats-grid,
    .locations-grid, .testimonials-grid, .faq-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    /* ─── Flex rows → Stack ─── */
    .flex-row, .split, .two-col, .content-split {
        flex-direction: column !important;
        gap: 1.5rem !important;
    }

    /* ─── Cards ─── */
    .card, .feature-card, .service-card, .pricing-card,
    .benefit-card, .testimonial-card, .location-card {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
    }

    /* ─── Tables → Card layout ─── */
    table.pricing-table, table.comparison-table, table.feature-table,
    .pricing-table table, .comparison table {
        display: none !important;
    }

    /* ─── Sticky header clearance ─── */
    main, .main-content, #main {
        margin-top: 0 !important;
    }

    /* ─── Bottom CTA/Banner ─── */
    .bottom-cta, .sticky-cta, .cta-banner-sticky, .floating-cta {
        padding: 0.6rem 1rem !important;
        font-size: 0.85rem !important;
    }
    .bottom-cta .btn, .sticky-cta .btn {
        font-size: 0.85rem !important;
        padding: 0.6rem 1rem !important;
    }

    /* ─── Process steps ─── */
    .process-steps, .steps { flex-direction: column !important; gap: 1rem !important; }
    .step-connector, .step-arrow { display: none !important; }

    /* ─── FAQ ─── */
    .faq-item summary, .faq-item .faq-question {
        font-size: 0.95rem !important;
        padding: 1rem !important;
        min-height: 44px !important;
    }

    /* ─── Footer ─── */
    footer .footer-grid, footer .footer-cols {
        grid-template-columns: 1fr 1fr !important;
        gap: 1.5rem !important;
    }
    footer .footer-links a { min-height: 36px !important; display: inline-flex !important; align-items: center !important; }

    /* ─── Modals / Overlays ─── */
    .modal-content, .modal-box {
        width: 95vw !important;
        max-height: 90vh !important;
        overflow-y: auto !important;
    }
}

@media (max-width: 480px) {
    h1 { font-size: clamp(1.4rem, 5.5vw, 1.9rem) !important; }
    h2 { font-size: clamp(1.2rem, 4.5vw, 1.6rem) !important; }
    section, .section { padding: 2rem 0 !important; }
    footer .footer-grid, footer .footer-cols {
        grid-template-columns: 1fr !important;
    }
}

/* ─── Pricing Table Mobile Cards (visible alternative) ─── */
.pricing-cards-mobile { display: none !important; }
@media (max-width: 768px) {
    .pricing-cards-mobile { display: flex !important; flex-direction: column !important; gap: 1rem !important; }
    .pricing-card-mobile {
        background: #fff !important;
        border-radius: 12px !important;
        padding: 1.25rem !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08) !important;
        border: 1px solid #e5e7eb !important;
    }
    .pricing-card-mobile.highlight {
        border-color: var(--amber, #F5A623) !important;
        box-shadow: 0 4px 16px rgba(245,166,35,0.2) !important;
    }
    .pricing-card-mobile .pkg-name {
        font-weight: 700 !important; font-size: 1rem !important; margin-bottom: 0.25rem !important;
    }
    .pricing-card-mobile .pkg-price {
        font-size: 1.4rem !important; font-weight: 800 !important; margin-bottom: 0.75rem !important;
    }
    .pricing-card-mobile .pkg-features {
        list-style: none !important; padding: 0 !important; margin: 0 0 0.75rem !important;
    }
    .pricing-card-mobile .pkg-features li {
        padding: 0.3rem 0 !important; border-bottom: 1px solid #f0f0f0 !important;
        font-size: 0.9rem !important;
    }
    .pricing-card-mobile .pkg-features li:before {
        content: "✓ " !important; color: var(--amber, #F5A623) !important; font-weight: 700 !important;
    }
}
