    <style>
.hp{display:none;}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding: 20px;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  color: #1f2933;
  background: #f6f7f9;
}

section {
  padding: 3rem 0 2.5rem;
}

.section-header {
  margin-bottom: 1.75rem;
}

section h2 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

section p.section-lead {
  font-size: 0.95rem;
  color: #1f2933;
  max-width: 34rem;
}
a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

/* ====== Layout ====== */
.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

header {
    background: transparent;
    color: #ffffff;
    position: fixed;
	width:100%;
    top: 0;
    z-index: 50;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0.5rem;
}

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.logo span {
    color: #f97316;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1rem;
}

nav a {
    font-size: 0.95rem;
    padding: 0.25rem 0.5rem;
    border-radius: 999px;
    transition: background 0.2s, color 0.2s;
}

nav a:hover {
    background: rgba(249, 115, 22, 0.18);
    color: #94c120;
}

.header-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-size: 0.85rem;
}

.header-phone {
    font-weight: 600;
    font-size: 0.95rem;
}

.header-phone a {
    color: #94c120;
}

.header-note {
    opacity: 0.8;
}

/* ====== Hero ====== */
.hero {
    background: linear-gradient(145deg,#596e80 55%,#cfdbe6 90%);
    color: #ffffff;
    padding: 4.5em 0 2.5rem
}

.hero-inner {
    display: grid;
    gap: 2rem;
}

.hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(249, 115, 22, 0.4);
    margin-bottom: 1rem;
}
#top.scrolled{background:#596e80 }
.hero-tagline-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #22c55e;
}

.hero h1 {
    font-size: clamp(1.9rem, 3vw + 1rem, 2.7rem);
    margin-bottom: 0.75rem;
}

.hero h1 span {
    color: parent;
}

.hero-subtitle {
    font-size: 1rem;
    max-width: 30rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
    font-size: 0.85rem;
}

.badge {
    border-radius: 999px;
    padding: 0.35rem 0.75rem;
    border: 1px solid rgba(156, 163, 175, 0.5);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #94c120;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.4rem;
    border-radius: 999px;
    border: none;
    background: #94c120;
    color: #f6f7f9;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
	min-width:187px;
}

.btn-primary:hover {
    background: #94c120;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
    transform: translateY(-1px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.2rem;
    border-radius: 999px;
    border: 1px solid rgba(156, 163, 175, 0.7);
    background: transparent;
    color: #e5e7eb;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
		min-width:187px;

}

.btn-outline:hover {
    background: rgba(31, 41, 55, 0.9);
}

.hero-hint {
    font-size: 0.8rem;
    opacity: 0.85;
	margin-top:5px;
}

.hero-form-card {
    background: #f9fafb;
    color: #111827;
    border-radius: 1.25rem;
    padding: 1.5rem 1.5rem 1.75rem;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.45);
}

.hero-form-title {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}
.section-p{
	font-size:0.95rem; 
	margin-bottom:0.6rem;
}
.hero-form-subtitle {
    font-size: 0.85rem;
    color: #4b5563;
    margin-bottom: 1.1rem;
}

/* ====== Formulare ====== */
.form-grid {
    display: grid;
    gap: 0.75rem;
}
button#backToStep1 {
    color: #000;
}
label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 0.1rem;
}

label span {
    color: #ef4444;
}

input[type="text"],
input[type="email"],
textarea,
select {
    width: 100%;
    border-radius: 0.75rem;
    border: 1px solid #d1d5db;
    padding: 0.6rem 0.7rem;
    font-size: 0.9rem;
    background: #ffffff;
    transition: border-color 0.15s, box-shadow 0.15s;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #94c120;
    box-shadow: 0 0 0 1px rgba(249, 115, 22, 0.35);
}

textarea {
    min-height: 80px;
    resize: vertical;
}

.form-footnote {
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 0.4rem;
}

.alert {
    padding: 0.6rem 0.9rem;
    border-radius: 0.75rem;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.alert-success {
    background: #ecfdf3;
    border: 1px solid #16a34a;
    color: #166534;
}

.alert-error {
    background: #fef2f2;
    border: 1px solid #dc2626;
    color: #991b1b;
}

.alert ul {
    margin-left: 1rem;
    margin-top: 0.25rem;
}

/* Mehrseitiges Formular: kleine Fade-Animation */
.form-step {
    animation: fadeIn 0.25s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ====== Sektionen allgemein ====== */
section {
    padding: 3rem 0 2.5rem;
}

section h2 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

section p.section-lead {
    font-size: 0.95rem;
    color: #1f2933;
    max-width: 34rem;
}

.light {
    color: #f9fafb !important;
}

.section-header {
    margin-bottom: 1.75rem;
}

/* ====== Upload-Feld ====== */
.upload-wrapper {
    margin-top: 0.5rem;
}

.upload-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0.9rem;
    border-radius: 0.85rem;
    border: 1px dashed #d1d5db;
    background: #f9fafb;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}

.upload-label:hover {
    border-color: #94c120;
    background: #fff7ed;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.07);
}

.upload-icon {
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    background: rgba(249, 115, 22, 0.14);
}

.upload-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.upload-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #111827;
}

.upload-hint {
    font-size: 0.8rem;
    color: #6b7280;
    line-height: 1.4;
}

.upload-input {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.upload-filenames {
    margin-top: 0.4rem;
    font-size: 0.78rem;
    color: #4b5563;
}

/* ====== USP-Kacheln ====== */
.usp-grid {
    display: grid;
    gap: 1rem;
}

.usp-card {
    background: #ffffff;
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.usp-icon {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: rgba(249, 115, 22, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.usp-title {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.usp-text {
    font-size: 0.85rem;
    color: #4b5563;
}

/* ====== Prozess ====== */
.process-grid {
    display: grid;
    gap: 1.25rem;
}

.steps {
    display: grid;
    gap: 0.9rem;
}

.step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.6rem 0.75rem;
    align-items: flex-start;
}

.step-number {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: #596e80;
    color: #f9fafb;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.15rem;
}

.step-title {
    font-weight: 600;
    font-size: 0.95rem;
}

.step-text {
    font-size: 0.88rem;
    color: #4b5563;
}

.process-highlight {
    background: #596e80;
    color: #f9fafb;
    border-radius: 1.25rem;
    padding: 1.4rem 1.3rem;
    font-size: 0.9rem;
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.45);
}

.process-highlight h3 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
}

.process-highlight ul {
    margin-top: 0.45rem;
    padding-left: 1rem;
}

.process-highlight li {
    margin-bottom: 0.25rem;
}

/* ====== Banner / Testimonial-Bild ====== */
.testimonial-banner {
    padding: 2rem 0 2rem;
    text-align: center;
}

.testimonial-banner .testimonial-image {
    width: 100%;
    max-width: 1100px;
    border-radius: 1.25rem;
    object-fit: cover;
    box-shadow: 0 15px 32px rgba(0, 0, 0, 0.18);
}

/* ==== Zwischenbanner nach dem Hero ==== */
.trust-banner {
    padding: 2rem 0 1rem;
}

.trust-banner .trust-image {
    width: 100%;
	height:auto;
    border-radius: 1.25rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    object-fit: cover;
    transition: transform 0.25s ease;
}

.trust-banner .trust-image:hover {
    transform: scale(1.01);
}

/* ====== Vorteile ====== */
.benefit-grid {
    display: grid;
    gap: 1.5rem;
}

.benefit-list {
    list-style: none;
}

.benefit-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.benefit-bullet {
    margin-top: 0.25rem;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #94c120;
    flex-shrink: 0;
}

.benefit-tag {
    display: inline-flex;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    background: #e5e7eb;
    font-size: 0.75rem;
    margin-top: 0.4rem;
}

/* ====== FAQ ====== */
.faq-grid {
    display: grid;
}

details {
    background: #ffffff;
    border-radius: 0.9rem;
    padding: 0.8rem 0.9rem;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
    margin: 10px 0;
}

summary {
    cursor: pointer;
    font-weight: 600;
    font-size: 0.92rem;
    list-style: none;
}

summary::-webkit-details-marker {
    display: none;
}

details[open] summary {
    color: #94c120;
}

details p {
    margin-top: 0.5rem;
    font-size: 0.88rem;
    color: #4b5563;
}

/* ====== Testimonials ====== */
.testimonials {
    background: #596e80;
    color: #f9fafb;
}

.testimonial-grid {
    display: grid;
    gap: 1rem;
}

.testimonial-card {
    background: #596e80;
    border-radius: 1rem;
    padding: 1rem;
    font-size: 0.88rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.testimonial-name {
    font-weight: 600;
    margin-top: 0.4rem;
}

.testimonial-location {
    font-size: 0.8rem;
    color: #fff;
}

.stars {
    font-size: 0.8rem;
    color: #fbbf24;
    margin-bottom: 0.25rem;
}

/* ====== Footer ====== */
footer {
    background: #596e80;
    color: #f9fafb;
    padding: 2rem 0 5.5rem;
    font-size: 0.85rem;
}

.footer-grid {
    display: grid;
    gap: 1.5rem;
}

.footer-logo {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.footer-logo span {
    color: #f97316;
}

.footer-heading h3 {
    font-size: 0.9rem;
    color: #e5e7eb;
    margin-bottom: 0.4rem;
}
footer a{
    color: #f9fafb;
}
.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.25rem;
}

.footer-links a {
    color: #fff;
}

.footer-links a:hover {
    color: #94c120;
}

.footer-bottom {
    margin-top: 1.25rem;
    border-top: 1px solid rgba(148, 163, 184, 0.3);
    padding-top: 0.75rem!important;
    text-align: center;
    font-size: 0.78rem;
    color: #f9fafb;
}

/* ====== Responsive Navigation (Mobile) ====== */
.nav-toggle {
    display: none;
    font-size: 1.35rem;
    cursor: pointer;
    position: absolute;
    right: 1.5rem;
    top: 0.95rem;
    line-height: 1;
}

/* === FLOATING KONTAKT BUTTON === */
.contact-floating {
    position: fixed;
    bottom: 22px;
    right: 22px;
    z-index: 9999;
    display: none; /* wird via JS angezeigt */
}

.contact-main-btn {
    background: #25D366;
    color: #fff;
	    padding: 4px 0 4px 9px;
    border: none;
    width: 63px;
    height: 63px;
    border-radius: 999px;
    font-size: 1.8rem;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.contact-main-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

.contact-menu {
    position: absolute;
    bottom: 75px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.contact-menu.open {
    opacity: 1;
    pointer-events: auto;
}

.contact-item {
    padding: 10px 18px;
    border-radius: 12px;
    background: #ffffff;
    color: #111827;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
}

.contact-item.whatsapp {
    background: #25D366;
    color: #fff;
}

.contact-item.call {
    background: #94c120;
    color: #fff;
}

/* ====== Region-Sektion (Meinerzhagen & Umgebung) ====== */
.region-grid {
    display: grid;
    gap: 1.75rem;
    align-items: flex-start;
}

.region-highlight {
    background: #ffffff;
    border-radius: 1.1rem;
    padding: 1.3rem 1.2rem 1.4rem;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    font-size: 0.92rem;
}

.fakeheading,.region-highlight h3 {
    font-size: 1.05rem;
    margin-bottom: 0.6rem;
	font-weight:700;
}

.region-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.region-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    margin-bottom: 0.4rem;
}

.region-bullet {
    margin-top: 0.35rem;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #94c120;
    flex-shrink: 0;
}

/* =========================================================
   MEDIA QUERIES
   ========================================================= */

@media (min-width: 700px) {
    .form-grid-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .usp-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (min-width: 800px) {
    .process-grid {
        grid-template-columns: 1.2fr 0.8fr;
        align-items: center;
    }

    .faq-grid {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 1em;
    }

    .testimonial-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: 2fr 1.2fr 1.2fr;
    }
}

@media (min-width: 900px) {
    .hero-inner {
        grid-template-columns: 1.1fr 0.9fr;
        align-items: center;
    }

    .benefit-grid {
        grid-template-columns: 1.1fr 0.9fr;
        align-items: center;
    }

    .region-grid {
        grid-template-columns: 1.4fr 1fr;
    }
}


@media (max-width: 800px) {
    .testimonial-banner .testimonial-image {
        max-width: 100%;
        border-radius: 1rem;
    }

    nav {
        display: none;
    }

    .header-contact {
        display: none;
    }

    body.nav-open nav {
        display: block;
        background: #596e80;
        padding: 0.75rem 0.7rem 0.8rem;
        margin-top: 0.5rem;
        border-radius: 0.9rem;
    }

    nav ul {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 0.4rem;
        position: relative;
    }

    .nav-toggle {
        display: block;
    }
	.btn-outline,.btn-primary{width:100%;}
}

    </style>