:root {
    --primary: #c17b3c;
    --primary-dark: #9b5e2c;
    --primary-light: #e6c8a8;
    --secondary: #2c3e4e;
    --secondary-dark: #1e2c38;
    --gray-light: #f8f9fa;
    --gray-mid: #e9ecef;
    --gray: #6c757d;
    --dark: #212529;
    --white: #ffffff;
    --shadow-sm: 0 5px 15px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 25px rgba(0,0,0,0.08);
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    line-height: 1.5;
    color: var(--dark);
    background: var(--white);
}

.container { width: 90%; max-width: 1280px; margin: 0 auto; padding: 0 20px; }

h1, h2, h3 { font-weight: 600; line-height: 1.2; }
h1 { font-size: 3rem; margin-bottom: 1.25rem; }
h2 { font-size: 2.2rem; text-align: center; margin-bottom: 2.5rem; position: relative; padding-bottom: 0.75rem; }
h2:after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 70px; height: 3px; background: var(--primary); border-radius: 3px; }
h3 { font-size: 1.3rem; margin-bottom: 0.75rem; color: var(--secondary); }

.btn {
    display: inline-flex;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}
.btn-primary { background: var(--primary); color: white; box-shadow: 0 4px 12px rgba(193,123,60,0.3); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--secondary); border: 2px solid var(--secondary); }
.btn-outline:hover { background: var(--secondary); color: white; }

/* HEADER */
header { background: rgba(255,255,255,0.98); box-shadow: var(--shadow-sm); position: sticky; top: 0; z-index: 1000; backdrop-filter: blur(8px); }
.header-flex { display: flex; justify-content: space-between; align-items: center; padding: 1rem 0; flex-wrap: wrap; }
.logo { display: flex; align-items: center; gap: 0.75rem; }
.logo-icon { font-size: 2rem; font-weight: 700; color: var(--primary); background: var(--primary-light); width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; border-radius: 12px; }
.logo-text h1 { font-size: 1.5rem; margin: 0; background: linear-gradient(135deg, var(--secondary), var(--primary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.reg-mark { font-size: 0.8rem; vertical-align: super; -webkit-text-fill-color: var(--primary); color: var(--primary); }
.logo-text p { font-size: 0.75rem; color: var(--gray); }
.contact-header { text-align: right; }
.contact-header .phone { font-size: 1.5rem; font-weight: 700; color: var(--secondary); text-decoration: none; }
.contact-header .phone:hover { color: var(--primary); }
.small { font-size: 0.75rem; color: var(--gray); }

/* HERO mit Video */
.hero { position: relative; padding: 5rem 0; color: white; overflow: hidden; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; }
.hero-bg video { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(44,62,78,0.85), rgba(30,44,56,0.9)); z-index: 1; }
.hero-container { position: relative; z-index: 2; }
.hero-content { max-width: 650px; }
.hero h1 { color: white; font-size: 3rem; margin-bottom: 1rem; }
.hero-text { font-size: 1.1rem; margin: 1.5rem 0; opacity: 0.95; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.badge { background: rgba(255,255,255,0.2); backdrop-filter: blur(4px); padding: 0.4rem 1rem; border-radius: 50px; font-size: 0.8rem; }

/* KERNKOMPETENZEN (6 Kacheln) */
.kernkompetenzen { padding: 5rem 0; background: var(--white); }
.kacheln-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.kachel { background: var(--white); padding: 2rem; border-radius: 24px; text-align: center; box-shadow: var(--shadow-sm); transition: var(--transition); border: 1px solid rgba(0,0,0,0.03); }
.kachel:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: var(--primary-light); }
.kachel-icon { font-size: 2.5rem; margin-bottom: 1rem; }

/* ALLE LEISTUNGEN IM ÜBERBLICK */
.alle-leistungen { padding: 4rem 0; background: var(--gray-light); }
.leistungs-liste { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; max-width: 1000px; margin: 0 auto; }
.leistungs-item { background: var(--white); padding: 0.7rem 1.5rem; border-radius: 50px; font-size: 0.9rem; font-weight: 500; color: var(--secondary); box-shadow: var(--shadow-sm); transition: var(--transition); }
.leistungs-item:hover { background: var(--primary-light); transform: translateY(-2px); }

/* USP */
.usp { padding: 5rem 0; background: var(--white); }
.usp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; text-align: center; }
.usp-item { background: var(--gray-light); padding: 2rem; border-radius: 20px; transition: var(--transition); }
.usp-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); }
.usp-icon { font-size: 2.2rem; margin-bottom: 1rem; }

/* BEWERTUNGEN */
.bewertungen { padding: 5rem 0; background: var(--gray-light); }
.sterne-anzahl { text-align: center; font-size: 1.5rem; margin-bottom: 2rem; color: var(--primary); }
.bewertungen-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-bottom: 2rem; }
.bewertung-card { background: var(--white); padding: 2rem; border-radius: 24px; border-left: 5px solid var(--primary); box-shadow: var(--shadow-sm); }
.sterne { color: #f5b042; margin-bottom: 1rem; letter-spacing: 2px; }
.bewertung-text { font-style: italic; margin-bottom: 1rem; }
.bewertung-name { font-weight: 700; color: var(--primary-dark); }
.google-badge { text-align: center; padding: 1rem; background: var(--white); border-radius: 50px; display: inline-block; width: auto; margin: 0 auto; display: table; }

/* ABLAUF (4 Schritte) */
.ablauf { padding: 5rem 0; background: var(--white); }
.schritte-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; text-align: center; }
.schritt { background: var(--gray-light); padding: 2rem; border-radius: 20px; }
.schritt-nr { background: var(--primary); color: white; width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; font-weight: bold; font-size: 1.3rem; }

/* EINZUGSGEBIET */
.einzugsgebiet { padding: 5rem 0; background: var(--gray-light); }
.regionen-liste { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin: 2rem 0; }
.region { background: var(--white); padding: 0.8rem 1.8rem; border-radius: 50px; font-weight: 500; box-shadow: var(--shadow-sm); transition: var(--transition); }
.region:hover { background: var(--primary-light); transform: translateY(-2px); }
.region-hinweis { text-align: center; font-size: 0.9rem; color: var(--gray); }

/* FAQ */
.faq { padding: 5rem 0; background: var(--white); }
.faq-grid { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.faq-item { background: var(--gray-light); border-radius: 16px; overflow: hidden; }
.faq-frage { padding: 1.2rem 1.5rem; font-weight: 700; color: var(--secondary); cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-frage:after { content: '+'; font-size: 1.5rem; color: var(--primary); }
.faq-item.active .faq-frage:after { content: '−'; }
.faq-antwort { padding: 0 1.5rem; max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; color: var(--gray); }
.faq-item.active .faq-antwort { padding: 0 1.5rem 1.2rem; max-height: 300px; }

/* KONTAKT */
.kontakt { padding: 5rem 0; background: var(--gray-light); }
.kontakt-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; background: var(--white); padding: 2.5rem; border-radius: 32px; box-shadow: var(--shadow-md); }
.form-group { margin-bottom: 1.5rem; }
label { display: block; margin-bottom: 0.5rem; font-weight: 600; color: var(--secondary); }
input, select, textarea { width: 100%; padding: 12px 16px; border: 1px solid #dee2e6; border-radius: 16px; font-family: inherit; transition: var(--transition); }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(193,123,60,0.2); }
.privacy { display: flex; align-items: center; gap: 0.8rem; flex-wrap: wrap; }
.privacy input { width: auto; }
.kontakt-info h3 { margin-top: 1.5rem; }
.big-phone { font-size: 1.8rem; font-weight: 700; color: var(--primary); margin: 0.5rem 0; }
.kontakt-whatsapp { margin-top: 1.5rem; }
.whatsapp-link { display: inline-flex; align-items: center; gap: 0.5rem; background: #25D366; color: white; padding: 0.7rem 1.5rem; border-radius: 50px; text-decoration: none; font-weight: 600; transition: var(--transition); }
.whatsapp-link:hover { transform: translateY(-2px); }

/* FOOTER */
footer { background: var(--secondary-dark); color: #e9ecef; padding: 3rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; margin-bottom: 2rem; }
.footer-grid h4 { color: var(--primary-light); margin-bottom: 1.2rem; }
.footer-grid a { color: #cbd5e1; text-decoration: none; display: block; margin-bottom: 0.6rem; transition: color 0.3s; }
.footer-grid a:hover { color: var(--primary); }
.copyright { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.8rem; }

/* WHATSAPP FIX */
.whatsapp-fixed { position: fixed; bottom: 25px; right: 25px; background: #25D366; color: white; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; box-shadow: 0 4px 15px rgba(37,211,102,0.4); transition: var(--transition); z-index: 1000; text-decoration: none; }
.whatsapp-fixed:hover { transform: scale(1.1); }

/* RESPONSIVE */
@media (max-width: 992px) {
    h1 { font-size: 2.2rem; }
    .hero h1 { font-size: 2rem; }
    .hero-content { margin: 0 auto; text-align: center; }
    .hero-buttons { justify-content: center; }
    .hero-badges { justify-content: center; }
    .kontakt-wrapper { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .header-flex { flex-direction: column; gap: 1rem; text-align: center; }
    .contact-header { text-align: center; }
    .logo { justify-content: center; }
    h2 { font-size: 1.6rem; }
    .kacheln-grid { gap: 1.5rem; }
}