/*
Theme Name: Flachdachmeister Theme
Author: Antigravity / Studio
Description: Custom Block Theme für den Flachdachmeister.
Version: 1.0.0
*/

:root {
    --primary: var(--wp--preset--color--primary);
    --primary-dark: #000000;
    --accent: var(--wp--preset--color--accent);
    --accent-hover: #cc8400;
    --text: var(--wp--preset--color--primary);
    --text-light: #555555;
    --bg-light: var(--wp--preset--color--secondary);
    --white: var(--wp--preset--color--base);
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.12);
    --radius: 12px;
    --transition: all 0.3s ease;
    --green: #27ae60;
    --green-light: #e8f5e9;
    --danger: #c0392b;
    --danger-light: #fdf2f2;
    --success: #27ae60;
    --success-light: #e8f5e9;
    --success-light: #e8f5e9;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { overflow-x: hidden; color: var(--text); line-height: 1.7; }

/* HEADER */
.top-bar { background: var(--primary-dark); color: var(--white); padding: 8px 0; font-size: 14px; }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; }
.top-bar a { color: var(--white); text-decoration: none; }
.top-bar a:hover { text-decoration: underline; }

header { background: var(--white); box-shadow: var(--shadow); position: sticky; top: 0; z-index: 1000; }
header .container { display: flex; justify-content: space-between; align-items: center; padding: 15px 20px; }
.logo { font-size: 26px; font-weight: 800; color: var(--primary); text-decoration: none; letter-spacing: -0.5px; }
.logo span { color: var(--accent); }

nav ul { display: flex; list-style: none; gap: 32px; }
nav a { color: var(--text); text-decoration: none; font-weight: 600; font-size: 15px; transition: var(--transition); position: relative; }
nav a:hover { color: var(--primary); }
nav a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--accent); transition: var(--transition); }
nav a:hover::after { width: 100%; }

.btn { display: inline-block; padding: 14px 32px; border-radius: 50px; font-weight: 700; text-decoration: none; transition: var(--transition); cursor: pointer; border: none; font-size: 16px; }
.btn-primary { background: var(--accent); color: var(--white); }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--primary); }

/* WP CONTACT FORM 7 */
.wpcf7-form { width: 100%; }
.wpcf7-form p { margin-bottom: 15px; }
.wpcf7-form label { display: block; margin-bottom: 5px; font-weight: 600; }
.wpcf7-form input[type="text"], .wpcf7-form input[type="email"], .wpcf7-form input[type="tel"], .wpcf7-form textarea { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 6px; font-family: inherit; }
.wpcf7-form input[type="submit"] { background: var(--accent); color: var(--white); width: 100%; padding: 14px; font-size: 16px; border: none; border-radius: 6px; cursor: pointer; font-weight: 700; transition: var(--transition); }
.wpcf7-form input[type="submit"]:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: var(--shadow-hover); }

/* HERO */
.hero { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: var(--white); padding: 100px 0 120px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px; background: rgba(255,255,255,0.03); border-radius: 50%; }
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-badge { display: inline-block; background: rgba(255,255,255,0.15); backdrop-filter: blur(10px); padding: 8px 20px; border-radius: 50px; font-size: 14px; font-weight: 600; margin-bottom: 24px; border: 1px solid rgba(255,255,255,0.2); }
.hero h1 { font-size: 52px; line-height: 1.15; font-weight: 800; margin-bottom: 24px; letter-spacing: -1px; }
.hero h1 .highlight { color: var(--accent); position: relative; }
.hero-subtitle { font-size: 20px; opacity: 0.9; margin-bottom: 40px; max-width: 90%; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 40px; margin-top: 50px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.15); }
.stat-item h3 { font-size: 36px; font-weight: 800; color: var(--accent); }
.stat-item p { font-size: 14px; opacity: 0.8; margin-top: 4px; }
.hero-image { position: relative; }
.hero-image img { width: 100%; border-radius: var(--radius); box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.hero-card { position: absolute; bottom: -30px; left: -30px; background: var(--white); color: var(--text); padding: 24px; border-radius: var(--radius); box-shadow: var(--shadow-hover); max-width: 280px; }
.hero-card h4 { color: var(--primary); font-size: 16px; margin-bottom: 8px; }
.hero-card p { font-size: 14px; color: var(--text-light); margin: 0; }
.stars { color: var(--accent); font-size: 18px; margin-bottom: 8px; }

/* TRUST BAR */
.trust-bar { background: var(--bg-light); padding: 40px 0; border-bottom: 1px solid #e9ecef; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.trust-item { display: flex; align-items: center; justify-content: center; gap: 12px; font-weight: 600; color: var(--text); }
.trust-icon { width: 48px; height: 48px; background: var(--primary); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }

/* SECTIONS */
.section { padding: 90px 0; }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.section-label { display: inline-block; color: var(--accent); font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px; }
.section-header h2 { font-size: 40px; font-weight: 800; color: var(--primary); margin-bottom: 20px; line-height: 1.2; }
.section-header p { font-size: 18px; color: var(--text-light); }

/* SERVICES */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.service-card { background: var(--white); border-radius: var(--radius); padding: 40px 30px; box-shadow: var(--shadow); transition: var(--transition); border: 1px solid #f0f0f0; text-decoration: none; color: var(--text); display: block; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); border-color: var(--primary); }
.service-icon { width: 64px; height: 64px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: var(--white); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 28px; margin-bottom: 24px; }
.service-card h3 { font-size: 22px; font-weight: 700; color: var(--primary); margin-bottom: 12px; }
.service-card p { color: var(--text-light); font-size: 15px; margin-bottom: 20px; }
.service-link { color: var(--accent); font-weight: 700; font-size: 14px; display: flex; align-items: center; gap: 6px; }
.service-card:hover .service-link { color: var(--accent-hover); }

/* WHY US */
.why-us { background: var(--bg-light); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-content h2 { font-size: 38px; font-weight: 800; color: var(--primary); margin-bottom: 24px; line-height: 1.2; }
.why-content > p { font-size: 18px; color: var(--text-light); margin-bottom: 40px; }
.why-features { display: grid; gap: 24px; }
.why-feature { display: flex; gap: 20px; align-items: flex-start; }
.why-feature-icon { width: 56px; height: 56px; background: var(--white); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 24px; color: var(--accent); box-shadow: var(--shadow); flex-shrink: 0; }
.why-feature h4 { font-size: 18px; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.why-feature p { color: var(--text-light); font-size: 15px; }
.why-image { position: relative; }
.why-image img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-hover); }
.experience-badge { position: absolute; top: 30px; right: -20px; background: var(--accent); color: var(--white); padding: 24px; border-radius: var(--radius); text-align: center; box-shadow: var(--shadow-hover); }
.experience-badge .years { font-size: 48px; font-weight: 800; line-height: 1; }
.experience-badge p { font-size: 14px; font-weight: 600; margin-top: 4px; }

/* REGIONS */
.regions-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.region-card { background: var(--white); border-radius: var(--radius); padding: 30px 20px; text-align: center; box-shadow: var(--shadow); transition: var(--transition); text-decoration: none; color: var(--text); border: 2px solid transparent; }
.region-card:hover { transform: translateY(-5px); border-color: var(--primary); box-shadow: var(--shadow-hover); }
.region-card h3 { font-size: 18px; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.region-card p { font-size: 14px; color: var(--text-light); }
.region-icon { font-size: 36px; margin-bottom: 16px; }

/* CTA SECTION */
.cta-section { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: var(--white); padding: 100px 0; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></svg>'); background-size: 60px 60px; }
.cta-section .container { position: relative; z-index: 2; }
.cta-section h2 { font-size: 42px; font-weight: 800; margin-bottom: 20px; }
.cta-section p { font-size: 20px; opacity: 0.9; margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.cta-phone { display: inline-flex; align-items: center; gap: 12px; background: var(--accent); color: var(--white); padding: 18px 40px; border-radius: 50px; font-size: 22px; font-weight: 800; text-decoration: none; transition: var(--transition); }
.cta-phone:hover { background: var(--accent-hover); transform: scale(1.05); }

/* TESTIMONIALS */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.testimonial-card { background: var(--white); border-radius: var(--radius); padding: 40px 30px; box-shadow: var(--shadow); position: relative; }
.testimonial-card::before { content: '"'; position: absolute; top: 20px; left: 30px; font-size: 80px; color: var(--primary); opacity: 0.1; font-family: Georgia, serif; line-height: 1; }
.testimonial-card p { font-size: 16px; color: var(--text); margin-bottom: 24px; position: relative; z-index: 1; }
.testimonial-author { display: flex; align-items: center; gap: 16px; }
.testimonial-avatar { width: 50px; height: 50px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; font-size: 18px; }
.testimonial-author h4 { font-size: 16px; font-weight: 700; color: var(--primary); }
.testimonial-author p { font-size: 14px; color: var(--text-light); margin: 0; }

/* FAQ */
.faq-section { background: var(--bg-light); }
.faq-grid { max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--white); border-radius: var(--radius); margin-bottom: 16px; overflow: hidden; box-shadow: var(--shadow); }
.faq-question { padding: 24px 30px; font-size: 18px; font-weight: 700; color: var(--primary); cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: var(--transition); }
.faq-question:hover { background: #fafafa; }
.faq-question::after { content: '+'; font-size: 24px; color: var(--accent); font-weight: 400; }
.faq-answer { padding: 0 30px 24px; color: var(--text-light); font-size: 16px; line-height: 1.7; }

/* FOOTER */
footer { background: var(--primary-dark); color: var(--white); padding: 80px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 60px; }
.footer-brand .logo { color: var(--white); margin-bottom: 20px; display: inline-block; }
.footer-brand p { opacity: 0.8; font-size: 15px; line-height: 1.7; margin-bottom: 24px; }
.footer-contact p { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; font-size: 15px; }
.footer-contact a { color: var(--white); text-decoration: none; opacity: 0.9; }
.footer-contact a:hover { opacity: 1; text-decoration: underline; }
.footer-col h4 { font-size: 18px; font-weight: 700; margin-bottom: 24px; color: var(--white); }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 15px; transition: var(--transition); }
.footer-col a:hover { color: var(--accent); padding-left: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; display: flex; justify-content: space-between; align-items: center; font-size: 14px; opacity: 0.7; }
.footer-bottom a { color: var(--white); text-decoration: none; margin-left: 24px; }
.footer-bottom a:hover { text-decoration: underline; }

/* UTILITIES */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }

/* WP CORE CONTENT STYLES (For standard pages) */
.wp-block-post-content > .wp-block-group,
.wp-block-post-content > .wp-block-paragraph,
.wp-block-post-content > .wp-block-heading,
.wp-block-post-content > .wp-block-list,
.wp-block-post-content > .wp-block-image,
.wp-block-post-content > .wp-block-columns,
.wp-block-post-content > .wp-block-table {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}
.wp-block-post-content > .wp-block-group.alignwide,
.wp-block-post-content > .wp-block-image.alignwide {
    max-width: 1200px;
}
.wp-block-post-content > .wp-block-group.alignfull,
.wp-block-post-content > .wp-block-image.alignfull {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
}
.wp-block-paragraph {
    margin-bottom: 1.5em;
    font-size: 16px;
}
.wp-block-heading {
    color: var(--primary);
    font-weight: 700;
    margin-top: 2em;
    margin-bottom: 0.8em;
    line-height: 1.2;
}
h1.wp-block-heading { font-size: 40px; }
h2.wp-block-heading { font-size: 32px; }
h3.wp-block-heading { font-size: 24px; }
.wp-block-list {
    margin-bottom: 1.5em;
    padding-left: 40px !important;
}

/* Table Styling */
.wp-block-table {
    margin-bottom: 2em;
    width: 100%;
    border-collapse: collapse;
}
.wp-block-table th,
.wp-block-table td {
    padding: 15px 20px;
    border: 1px solid #e0e0e0;
    text-align: left;
}
.wp-block-table th {
    background-color: var(--bg-light);
    font-weight: 700;
    color: var(--primary);
}
.wp-block-table tr:nth-child(even) {
    background-color: #fafafa;
}
.wp-block-list li {
    margin-bottom: 0.5em;
}
.wp-block-post-content {
    padding-bottom: 60px;
}
.wp-block-post-content > *:not(.section):not(.breadcrumbs):not(.hero):first-child {
    margin-top: 60px !important;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero .container { grid-template-columns: 1fr; text-align: center; }
    .hero h1 { font-size: 40px; }
    .hero-subtitle { max-width: 100%; }
    .hero-cta { justify-content: center; }
    .hero-image { display: none; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .regions-grid { grid-template-columns: repeat(3, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: 1fr; }
    .experience-badge { right: 20px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    nav { display: none; }
    .hero { padding: 60px 0 80px; }
    .hero h1 { font-size: 32px; }
    .hero-stats { justify-content: center; flex-wrap: wrap; gap: 20px; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: 1fr; }
    .regions-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .cta-section h2 { font-size: 28px; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}




/* =========================================
   SPECIFIC PAGE STYLES (AUTO-EXTRACTED)
   ========================================= */

/* --- Styles from flachdachabdichtung.html --- */
/* MATERIALS GRID */
        .materials-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-bottom: 40px;
        }
        .material-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 40px;
            box-shadow: var(--shadow);
            border: 2px solid transparent;
            transition: var(--transition);
        }
        .material-card:hover {
            border-color: var(--primary);
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }
        .material-card h3 {
            font-size: 24px;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .material-card .material-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: var(--white);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            flex-shrink: 0;
        }
        .material-card p {
            color: var(--text-light);
            margin-bottom: 20px;
            font-size: 16px;
        }
        .material-features {
            list-style: none;
        }
        .material-features li {
            padding: 8px 0;
            padding-left: 28px;
            position: relative;
            font-size: 15px;
        }
        .material-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--accent);
            font-weight: 700;
        }
        .material-price {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #eee;
            font-size: 14px;
            color: var(--text-light);
        }
        .material-price strong {
            color: var(--primary);
            font-size: 18px;
        }

        /* PROCESS */
        .process-section { background: var(--bg-light); }
        .process-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            position: relative;
        }
        .process-step {
            background: var(--white);
            border-radius: var(--radius);
            padding: 40px 30px;
            text-align: center;
            box-shadow: var(--shadow);
            position: relative;
            transition: var(--transition);
        }
        .process-step:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }
        .step-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--accent), var(--accent-hover));
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 800;
            margin: 0 auto 20px;
        }
        .process-step h3 {
            font-size: 20px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 12px;
        }
        .process-step p {
            font-size: 15px;
            color: var(--text-light);
        }

        /* COMPARISON TABLE */
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 30px;
            background: var(--white);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .comparison-table th {
            background: var(--primary);
            color: var(--white);
            padding: 18px 24px;
            text-align: left;
            font-weight: 700;
            font-size: 15px;
        }
        .comparison-table td {
            padding: 16px 24px;
            border-bottom: 1px solid #f0f0f0;
            font-size: 15px;
        }
        .comparison-table tr:hover { background: #fafafa; }
        .comparison-table .check { color: #27ae60; font-weight: 700; }
        .comparison-table .partial { color: var(--accent); }
        .comparison-table .price-cell {
            font-weight: 700;
            color: var(--primary);
        }

        /* CTA BOX */
        .cta-box {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: var(--white);
            border-radius: var(--radius);
            padding: 60px;
            text-align: center;
            margin-top: 60px;
        }
        .cta-box h3 {
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 16px;
        }
        .cta-box p {
            font-size: 18px;
            opacity: 0.9;
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* FAQ */
        .faq-section { background: var(--bg-light); }
        .faq-grid { max-width: 800px; margin: 0 auto; }
        .faq-item {
            background: var(--white);
            border-radius: var(--radius);
            margin-bottom: 16px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .faq-question {
            padding: 24px 30px;
            font-size: 18px;
            font-weight: 700;
            color: var(--primary);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-answer {
            padding: 0 30px 24px;
            color: var(--text-light);
            font-size: 16px;
            line-height: 1.7;
        }

        /* RELATED SERVICES */
        .related-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .related-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 30px;
            box-shadow: var(--shadow);
            text-decoration: none;
            color: var(--text);
            transition: var(--transition);
            border: 2px solid transparent;
        }
        .related-card:hover {
            border-color: var(--primary);
            transform: translateY(-4px);
        }
        .related-card h4 {
            font-size: 18px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 10px;
        }
        .related-card p {
            font-size: 14px;
            color: var(--text-light);
        }

        /* FOOTER */

/* --- Styles from flachdachreparatur.html --- */
.damage-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .damage-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 40px 30px;
            box-shadow: var(--shadow);
            text-align: center;
            transition: var(--transition);
            border-top: 4px solid var(--danger);
        }
        .damage-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }
        .damage-icon {
            font-size: 48px;
            margin-bottom: 20px;
        }
        .damage-card h3 {
            font-size: 20px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 12px;
        }
        .damage-card p {
            color: var(--text-light);
            font-size: 15px;
            line-height: 1.7;
        }
        .damage-card .symptoms {
            background: var(--danger-light);
            border-radius: 8px;
            padding: 16px;
            margin-top: 20px;
            text-align: left;
        }
        .damage-card .symptoms h4 {
            font-size: 14px;
            font-weight: 700;
            color: var(--danger);
            margin-bottom: 8px;
        }
        .damage-card .symptoms ul {
            list-style: none;
            font-size: 14px;
        }
        .damage-card .symptoms li {
            padding: 4px 0;
            padding-left: 20px;
            position: relative;
        }
        .damage-card .symptoms li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--danger);
            font-weight: 700;
        }

        .emergency-steps {
            background: var(--bg-light);
        }
        .steps-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
        .step-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 40px 24px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
        }
        .step-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }
        .step-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--danger), #922b21);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 800;
            margin: 0 auto 20px;
        }
        .step-card h3 {
            font-size: 18px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 12px;
        }
        .step-card p {
            font-size: 15px;
            color: var(--text-light);
        }

        .service-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }
        .service-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 40px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 2px solid transparent;
        }
        .service-card:hover {
            border-color: var(--primary);
            transform: translateY(-4px);
        }
        .service-card h3 {
            font-size: 22px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .service-card p {
            color: var(--text-light);
            margin-bottom: 20px;
            font-size: 16px;
        }
        .service-features {
            list-style: none;
        }
        .service-features li {
            padding: 8px 0;
            padding-left: 28px;
            position: relative;
            font-size: 15px;
        }
        .service-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--accent);
            font-weight: 700;
        }

        .response-section { background: var(--bg-light); }
        .response-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        .response-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 40px 30px;
            text-align: center;
            box-shadow: var(--shadow);
        }
        .response-card .time {
            font-size: 48px;
            font-weight: 800;
            color: var(--accent);
            line-height: 1;
        }
        .response-card .time-label {
            font-size: 16px;
            font-weight: 700;
            color: var(--primary);
            margin: 12px 0 8px;
        }
        .response-card p {
            font-size: 15px;
            color: var(--text-light);
        }

        .cta-box {
            background: linear-gradient(135deg, var(--danger), #922b21);
            color: var(--white);
            border-radius: var(--radius);
            padding: 60px;
            text-align: center;
            margin-top: 60px;
        }
        .cta-box h3 {
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 16px;
        }
        .cta-box p {
            font-size: 18px;
            opacity: 0.95;
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .faq-section { background: var(--bg-light); }
        .faq-grid { max-width: 800px; margin: 0 auto; }
        .faq-item {
            background: var(--white);
            border-radius: var(--radius);
            margin-bottom: 16px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .faq-question {
            padding: 24px 30px;
            font-size: 18px;
            font-weight: 700;
            color: var(--primary);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-answer {
            padding: 0 30px 24px;
            color: var(--text-light);
            font-size: 16px;
            line-height: 1.7;
        }

        .related-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .related-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 30px;
            box-shadow: var(--shadow);
            text-decoration: none;
            color: var(--text);
            transition: var(--transition);
            border: 2px solid transparent;
        }
        .related-card:hover {
            border-color: var(--primary);
            transform: translateY(-4px);
        }
        .related-card h4 {
            font-size: 18px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 10px;
        }
        .related-card p {
            font-size: 14px;
            color: var(--text-light);
        }

/* --- Styles from flachdach-wartung.html --- */
.benefits-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        .benefit-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 40px 30px;
            box-shadow: var(--shadow);
            text-align: center;
            transition: var(--transition);
            border-top: 4px solid var(--success);
        }
        .benefit-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }
        .benefit-icon {
            font-size: 48px;
            margin-bottom: 20px;
        }
        .benefit-card h3 {
            font-size: 22px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 12px;
        }
        .benefit-card p {
            color: var(--text-light);
            font-size: 15px;
            line-height: 1.7;
        }
        .benefit-stat {
            font-size: 36px;
            font-weight: 800;
            color: var(--accent);
            margin: 16px 0 8px;
        }

        .checklist-section { background: var(--bg-light); }
        .checklist-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }
        .checklist-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 40px;
            box-shadow: var(--shadow);
        }
        .checklist-card h3 {
            font-size: 22px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .checklist-card h3 .icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: var(--white);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            flex-shrink: 0;
        }
        .checklist {
            list-style: none;
        }
        .checklist li {
            padding: 10px 0;
            padding-left: 32px;
            position: relative;
            font-size: 15px;
            border-bottom: 1px solid #f5f5f5;
        }
        .checklist li:last-child { border-bottom: none; }
        .checklist li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--success);
            font-weight: 700;
            font-size: 18px;
        }

        .contracts-section { background: var(--bg-light); }
        .contracts-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .contract-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 40px 30px;
            box-shadow: var(--shadow);
            text-align: center;
            transition: var(--transition);
            border: 2px solid transparent;
            position: relative;
        }
        .contract-card:hover {
            border-color: var(--primary);
            transform: translateY(-5px);
        }
        .contract-card.popular::before {
            content: 'BELIEBT';
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--accent);
            color: var(--white);
            padding: 6px 20px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
        }
        .contract-card h3 {
            font-size: 22px;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 8px;
        }
        .contract-card .price {
            font-size: 42px;
            font-weight: 800;
            color: var(--accent);
            margin: 16px 0;
        }
        .contract-card .price-unit {
            font-size: 14px;
            color: var(--text-light);
            margin-bottom: 24px;
        }
        .contract-features {
            list-style: none;
            text-align: left;
            margin-bottom: 24px;
        }
        .contract-features li {
            padding: 8px 0;
            padding-left: 24px;
            position: relative;
            font-size: 15px;
        }
        .contract-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--success);
            font-weight: 700;
        }

        .process-section { background: var(--bg-light); }
        .process-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }
        .process-step {
            background: var(--white);
            border-radius: var(--radius);
            padding: 40px 30px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .process-step:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }
        .step-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--accent), var(--accent-hover));
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 800;
            margin: 0 auto 20px;
        }
        .process-step h3 {
            font-size: 20px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 12px;
        }
        .process-step p {
            font-size: 15px;
            color: var(--text-light);
        }

        .warning-box {
            background: linear-gradient(135deg, #fff3e0, #ffe0b2);
            border-left: 5px solid var(--accent);
            border-radius: var(--radius);
            padding: 30px;
            margin: 30px 0;
        }
        .warning-box h3 {
            color: var(--accent);
            font-size: 22px;
            font-weight: 800;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .warning-box p {
            font-size: 16px;
            color: var(--text);
            line-height: 1.7;
        }

        .cta-box {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: var(--white);
            border-radius: var(--radius);
            padding: 60px;
            text-align: center;
            margin-top: 60px;
        }
        .cta-box h3 {
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 16px;
        }
        .cta-box p {
            font-size: 18px;
            opacity: 0.9;
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .faq-section { background: var(--bg-light); }
        .faq-grid { max-width: 800px; margin: 0 auto; }
        .faq-item {
            background: var(--white);
            border-radius: var(--radius);
            margin-bottom: 16px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .faq-question {
            padding: 24px 30px;
            font-size: 18px;
            font-weight: 700;
            color: var(--primary);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-answer {
            padding: 0 30px 24px;
            color: var(--text-light);
            font-size: 16px;
            line-height: 1.7;
        }

        .related-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .related-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 30px;
            box-shadow: var(--shadow);
            text-decoration: none;
            color: var(--text);
            transition: var(--transition);
            border: 2px solid transparent;
        }
        .related-card:hover {
            border-color: var(--primary);
            transform: translateY(-4px);
        }
        .related-card h4 {
            font-size: 18px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 10px;
        }
        .related-card p {
            font-size: 14px;
            color: var(--text-light);
        }

/* --- Styles from neubau-flachdach.html --- */
.roof-types {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        .roof-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 40px 30px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }
        .roof-card:hover {
            border-color: var(--primary);
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
        }
        .roof-card.recommended::before {
            content: 'EMPFOHLEN';
            position: absolute;
            top: 20px;
            right: -35px;
            background: var(--accent);
            color: var(--white);
            padding: 6px 40px;
            font-size: 12px;
            font-weight: 700;
            transform: rotate(45deg);
        }
        .roof-icon {
            font-size: 48px;
            margin-bottom: 20px;
        }
        .roof-card h3 {
            font-size: 24px;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 16px;
        }
        .roof-card p {
            color: var(--text-light);
            margin-bottom: 20px;
            font-size: 16px;
        }
        .roof-features {
            list-style: none;
            margin-bottom: 24px;
        }
        .roof-features li {
            padding: 8px 0;
            padding-left: 28px;
            position: relative;
            font-size: 15px;
        }
        .roof-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--accent);
            font-weight: 700;
        }
        .roof-card .price {
            font-size: 14px;
            color: var(--text-light);
            padding-top: 20px;
            border-top: 1px solid #eee;
        }
        .roof-card .price strong {
            color: var(--primary);
            font-size: 20px;
        }

        .process-section { background: var(--bg-light); }
        .process-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }
        .process-step {
            background: var(--white);
            border-radius: var(--radius);
            padding: 40px 30px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .process-step:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }
        .step-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--accent), var(--accent-hover));
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 800;
            margin: 0 auto 20px;
        }
        .process-step h3 {
            font-size: 20px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 12px;
        }
        .process-step p {
            font-size: 15px;
            color: var(--text-light);
        }

        .comparison-section { background: var(--bg-light); }
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            background: var(--white);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .comparison-table th {
            background: var(--primary);
            color: var(--white);
            padding: 18px 24px;
            text-align: left;
            font-weight: 700;
            font-size: 15px;
        }
        .comparison-table td {
            padding: 16px 24px;
            border-bottom: 1px solid #f0f0f0;
            font-size: 15px;
        }
        .comparison-table tr:hover { background: #fafafa; }
        .comparison-table .check { color: #27ae60; font-weight: 700; }
        .comparison-table .partial { color: var(--accent); }
        .comparison-table .price-cell {
            font-weight: 700;
            color: var(--primary);
        }

        .materials-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }
        .material-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 40px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 2px solid transparent;
        }
        .material-card:hover {
            border-color: var(--primary);
            transform: translateY(-4px);
        }
        .material-card h3 {
            font-size: 22px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .material-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: var(--white);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            flex-shrink: 0;
        }
        .material-card p {
            color: var(--text-light);
            margin-bottom: 20px;
            font-size: 16px;
        }
        .material-features {
            list-style: none;
        }
        .material-features li {
            padding: 8px 0;
            padding-left: 28px;
            position: relative;
            font-size: 15px;
        }
        .material-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--accent);
            font-weight: 700;
        }

        .cta-box {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: var(--white);
            border-radius: var(--radius);
            padding: 60px;
            text-align: center;
            margin-top: 60px;
        }
        .cta-box h3 {
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 16px;
        }
        .cta-box p {
            font-size: 18px;
            opacity: 0.9;
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .faq-section { background: var(--bg-light); }
        .faq-grid { max-width: 800px; margin: 0 auto; }
        .faq-item {
            background: var(--white);
            border-radius: var(--radius);
            margin-bottom: 16px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .faq-question {
            padding: 24px 30px;
            font-size: 18px;
            font-weight: 700;
            color: var(--primary);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-answer {
            padding: 0 30px 24px;
            color: var(--text-light);
            font-size: 16px;
            line-height: 1.7;
        }

        .related-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .related-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 30px;
            box-shadow: var(--shadow);
            text-decoration: none;
            color: var(--text);
            transition: var(--transition);
            border: 2px solid transparent;
        }
        .related-card:hover {
            border-color: var(--primary);
            transform: translateY(-4px);
        }
        .related-card h4 {
            font-size: 18px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 10px;
        }
        .related-card p {
            font-size: 14px;
            color: var(--text-light);
        }

/* --- Styles from dachbegruenung.html --- */
.benefits-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
        .benefit-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 40px 24px;
            box-shadow: var(--shadow);
            text-align: center;
            transition: var(--transition);
            border-top: 4px solid var(--green);
        }
        .benefit-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }
        .benefit-icon {
            font-size: 48px;
            margin-bottom: 16px;
        }
        .benefit-card h3 {
            font-size: 18px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 10px;
        }
        .benefit-card p {
            color: var(--text-light);
            font-size: 14px;
            line-height: 1.6;
        }

        .types-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }
        .type-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 50px 40px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 2px solid transparent;
            position: relative;
        }
        .type-card:hover {
            border-color: var(--green);
            transform: translateY(-6px);
            box-shadow: var(--shadow-hover);
        }
        .type-card h3 {
            font-size: 28px;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 16px;
        }
        .type-card .subtitle {
            font-size: 16px;
            color: var(--accent);
            font-weight: 600;
            margin-bottom: 20px;
        }
        .type-card p {
            color: var(--text-light);
            margin-bottom: 24px;
            font-size: 16px;
        }
        .type-features {
            list-style: none;
            margin-bottom: 24px;
        }
        .type-features li {
            padding: 10px 0;
            padding-left: 28px;
            position: relative;
            font-size: 15px;
            border-bottom: 1px solid #f5f5f5;
        }
        .type-features li:last-child { border-bottom: none; }
        .type-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--green);
            font-weight: 700;
        }
        .type-price {
            font-size: 14px;
            color: var(--text-light);
            padding-top: 20px;
            border-top: 2px solid var(--green-light);
        }
        .type-price strong {
            color: var(--primary);
            font-size: 22px;
        }

        .buildup-section { background: var(--bg-light); }
        .buildup-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 40px 16px;
        }
        .buildup-step {
            background: var(--white);
            border-radius: var(--radius);
            padding: 30px 20px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
        }
        .buildup-step:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }
        .buildup-step::after {
            content: '↓';
            position: absolute;
            bottom: -30px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 24px;
            color: var(--green);
            font-weight: 700;
        }
        .buildup-step:last-child::after { display: none; }
        .buildup-number {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--green), #219a52);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: 800;
            margin: 0 auto 16px;
        }
        .buildup-step h4 {
            font-size: 16px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 8px;
        }
        .buildup-step p {
            font-size: 13px;
            color: var(--text-light);
            line-height: 1.5;
        }

        .plants-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .plant-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 30px;
            box-shadow: var(--shadow);
            text-align: center;
            transition: var(--transition);
        }
        .plant-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }
        .plant-icon {
            font-size: 48px;
            margin-bottom: 16px;
        }
        .plant-card h4 {
            font-size: 18px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 10px;
        }
        .plant-card p {
            font-size: 14px;
            color: var(--text-light);
            line-height: 1.6;
        }

        .costs-section { background: var(--bg-light); }
        .costs-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }
        .cost-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 40px;
            box-shadow: var(--shadow);
        }
        .cost-card h3 {
            font-size: 22px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 20px;
        }
        .cost-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 14px 0;
            border-bottom: 1px solid #f0f0f0;
            font-size: 15px;
        }
        .cost-row:last-child { border-bottom: none; }
        .cost-row .label { color: var(--text-light); }
        .cost-row .value {
            font-weight: 700;
            color: var(--primary);
        }

        .funding-box {
            background: linear-gradient(135deg, var(--green-light), #c8e6c9);
            border-left: 5px solid var(--green);
            border-radius: var(--radius);
            padding: 40px;
            margin: 40px 0;
        }
        .funding-box h3 {
            font-size: 24px;
            font-weight: 800;
            color: var(--green);
            margin-bottom: 16px;
        }
        .funding-box p {
            font-size: 16px;
            color: var(--text);
            line-height: 1.7;
            margin-bottom: 16px;
        }
        .funding-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            margin-top: 20px;
        }
        .funding-item {
            background: var(--white);
            border-radius: 8px;
            padding: 20px;
            text-align: center;
        }
        .funding-item .amount {
            font-size: 28px;
            font-weight: 800;
            color: var(--green);
        }
        .funding-item p {
            font-size: 14px;
            color: var(--text-light);
            margin: 0;
        }

        .cta-box {
            background: linear-gradient(135deg, #1e5631, #2d7a46);
            color: var(--white);
            border-radius: var(--radius);
            padding: 60px;
            text-align: center;
            margin-top: 60px;
        }
        .cta-box h3 {
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 16px;
        }
        .cta-box p {
            font-size: 18px;
            opacity: 0.95;
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .faq-section { background: var(--bg-light); }
        .faq-grid { max-width: 800px; margin: 0 auto; }
        .faq-item {
            background: var(--white);
            border-radius: var(--radius);
            margin-bottom: 16px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .faq-question {
            padding: 24px 30px;
            font-size: 18px;
            font-weight: 700;
            color: var(--primary);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-answer {
            padding: 0 30px 24px;
            color: var(--text-light);
            font-size: 16px;
            line-height: 1.7;
        }

        .related-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .related-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 30px;
            box-shadow: var(--shadow);
            text-decoration: none;
            color: var(--text);
            transition: var(--transition);
            border: 2px solid transparent;
        }
        .related-card:hover {
            border-color: var(--green);
            transform: translateY(-4px);
        }
        .related-card h4 {
            font-size: 18px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 10px;
        }
        .related-card p {
            font-size: 14px;
            color: var(--text-light);
        }

/* --- Styles from salzburg.html --- */
.local-info {
            background: var(--bg-light);
        }
        .info-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }
        .info-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 40px;
            box-shadow: var(--shadow);
        }
        .info-card h3 {
            font-size: 22px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .info-card p {
            color: var(--text-light);
            font-size: 16px;
            line-height: 1.7;
        }
        .info-list {
            list-style: none;
            margin-top: 16px;
        }
        .info-list li {
            padding: 8px 0;
            padding-left: 28px;
            position: relative;
            font-size: 15px;
        }
        .info-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--accent);
            font-weight: 700;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .service-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 40px 30px;
            box-shadow: var(--shadow);
            text-align: center;
            transition: var(--transition);
            border: 2px solid transparent;
            text-decoration: none;
            color: var(--text);
            display: block;
        }
        .service-card:hover {
            border-color: var(--primary);
            transform: translateY(-6px);
            box-shadow: var(--shadow-hover);
        }
        .service-icon {
            font-size: 48px;
            margin-bottom: 20px;
        }
        .service-card h3 {
            font-size: 20px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 12px;
        }
        .service-card p {
            color: var(--text-light);
            font-size: 15px;
            line-height: 1.6;
        }
        
        .districts-section { background: var(--bg-light); }
        .districts-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }
        .district-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 24px 16px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .district-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }
        .district-card h4 {
            font-size: 16px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 4px;
        }
        .district-card p {
            font-size: 13px;
            color: var(--text-light);
        }
        
        .why-section { background: var(--bg-light); }
        .why-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }
        .why-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 40px;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .why-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }
        .why-card h3 {
            font-size: 20px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 12px;
        }
        .why-card p {
            color: var(--text-light);
            font-size: 15px;
            line-height: 1.7;
        }
        
        .process-section { background: var(--bg-light); }
        .process-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }
        .process-step {
            background: var(--white);
            border-radius: var(--radius);
            padding: 40px 30px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .process-step:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }
        .step-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--accent), var(--accent-hover));
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 800;
            margin: 0 auto 20px;
        }
        .process-step h3 {
            font-size: 20px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 12px;
        }
        .process-step p {
            font-size: 15px;
            color: var(--text-light);
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        .testimonial-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 40px 30px;
            box-shadow: var(--shadow);
            position: relative;
        }
        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 30px;
            font-size: 80px;
            color: var(--primary);
            opacity: 0.1;
            font-family: Georgia, serif;
            line-height: 1;
        }
        .testimonial-card p {
            font-size: 16px;
            color: var(--text);
            margin-bottom: 24px;
            position: relative;
            z-index: 1;
        }
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 16px;
        }
        .testimonial-avatar {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-weight: 700;
            font-size: 18px;
        }
        .testimonial-author h4 {
            font-size: 16px;
            font-weight: 700;
            color: var(--primary);
        }
        .testimonial-author p {
            font-size: 14px;
            color: var(--text-light);
            margin: 0;
        }
        
        .map-section { background: var(--bg-light); }
        .map-container {
            background: var(--white);
            border-radius: var(--radius);
            padding: 40px;
            box-shadow: var(--shadow);
            text-align: center;
        }
        .map-container h3 {
            font-size: 22px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 20px;
        }
        .map-info {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 30px;
        }
        .map-info-item {
            padding: 24px;
            background: var(--bg-light);
            border-radius: var(--radius);
        }
        .map-info-item .number {
            font-size: 36px;
            font-weight: 800;
            color: var(--accent);
        }
        .map-info-item p {
            font-size: 14px;
            color: var(--text-light);
            margin-top: 8px;
        }
        
        .cta-box {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: var(--white);
            border-radius: var(--radius);
            padding: 60px;
            text-align: center;
            margin-top: 60px;
        }
        .cta-box h3 {
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 16px;
        }
        .cta-box p {
            font-size: 18px;
            opacity: 0.9;
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .faq-section { background: var(--bg-light); }
        .faq-grid { max-width: 800px; margin: 0 auto; }
        .faq-item {
            background: var(--white);
            border-radius: var(--radius);
            margin-bottom: 16px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .faq-question {
            padding: 24px 30px;
            font-size: 18px;
            font-weight: 700;
            color: var(--primary);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-answer {
            padding: 0 30px 24px;
            color: var(--text-light);
            font-size: 16px;
            line-height: 1.7;
        }
        
        .nearby-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .nearby-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 30px;
            box-shadow: var(--shadow);
            text-decoration: none;
            color: var(--text);
            transition: var(--transition);
            border: 2px solid transparent;
        }
        .nearby-card:hover {
            border-color: var(--primary);
            transform: translateY(-4px);
        }
        .nearby-card h4 {
            font-size: 18px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 10px;
        }
        .nearby-card p {
            font-size: 14px;
            color: var(--text-light);
        }


/* =========================================
   SPECIFIC PAGE MEDIA QUERIES (AUTO-EXTRACTED)
   ========================================= */

/* --- Media Queries from flachdachabdichtung.html --- */
@media (max-width: 1024px) {
            
            
            .materials-grid { grid-template-columns: 1fr; }
            .process-steps { grid-template-columns: repeat(2, 1fr); }
            .related-grid { grid-template-columns: repeat(2, 1fr); }
            
            .cta-box { padding: 40px 30px; }
        }

        @media (max-width: 768px) {
            
            
            .process-steps { grid-template-columns: 1fr; }
            .related-grid { grid-template-columns: 1fr; }
            
            .comparison-table { font-size: 13px; }
            .comparison-table th, .comparison-table td { padding: 12px 16px; }
        }

/* --- Media Queries from flachdachreparatur.html --- */
@media (max-width: 1024px) {
            
            
            
            .damage-grid { grid-template-columns: repeat(2, 1fr); }
            .steps-grid { grid-template-columns: repeat(2, 1fr); }
            .response-grid { grid-template-columns: 1fr; }
            .service-grid { grid-template-columns: 1fr; }
            .related-grid { grid-template-columns: repeat(2, 1fr); }
            
            .cta-box { padding: 40px 30px; }
        }

        @media (max-width: 768px) {
            
            
            .damage-grid { grid-template-columns: 1fr; }
            .steps-grid { grid-template-columns: 1fr; }
            .related-grid { grid-template-columns: 1fr; }
            
        }

/* --- Media Queries from flachdach-wartung.html --- */
@media (max-width: 1024px) {
            
            
            
            .benefits-grid { grid-template-columns: 1fr; }
            .checklist-grid { grid-template-columns: 1fr; }
            .contracts-grid { grid-template-columns: 1fr; }
            .process-steps { grid-template-columns: repeat(2, 1fr); }
            .related-grid { grid-template-columns: repeat(2, 1fr); }
            
            .cta-box { padding: 40px 30px; }
        }

        @media (max-width: 768px) {
            
            
            .process-steps { grid-template-columns: 1fr; }
            .related-grid { grid-template-columns: 1fr; }
            
        }

/* --- Media Queries from neubau-flachdach.html --- */
@media (max-width: 1024px) {
            
            
            
            .roof-types { grid-template-columns: 1fr; }
            .process-steps { grid-template-columns: repeat(2, 1fr); }
            .materials-grid { grid-template-columns: 1fr; }
            .related-grid { grid-template-columns: repeat(2, 1fr); }
            
            .cta-box { padding: 40px 30px; }
        }

        @media (max-width: 768px) {
            
            
            .process-steps { grid-template-columns: 1fr; }
            .related-grid { grid-template-columns: 1fr; }
            
        }

/* --- Media Queries from dachbegruenung.html --- */
@media (max-width: 1024px) {
            
            
            
            .benefits-grid { grid-template-columns: repeat(2, 1fr); }
            .types-grid { grid-template-columns: 1fr; }
            .buildup-grid { grid-template-columns: repeat(3, 1fr); }
            .buildup-step::after { display: none; }
            .plants-grid { grid-template-columns: repeat(2, 1fr); }
            .costs-grid { grid-template-columns: 1fr; }
            .funding-grid { grid-template-columns: 1fr; }
            .related-grid { grid-template-columns: repeat(2, 1fr); }
            
            .cta-box { padding: 40px 30px; }
        }

        @media (max-width: 768px) {
            
            
            .benefits-grid { grid-template-columns: 1fr; }
            .buildup-grid { grid-template-columns: 1fr; }
            .plants-grid { grid-template-columns: 1fr; }
            .related-grid { grid-template-columns: 1fr; }
            
        }

/* --- Media Queries from salzburg.html --- */
@media (max-width: 1024px) {
            
            
            
            .info-grid { grid-template-columns: 1fr; }
            
            .districts-grid { grid-template-columns: repeat(2, 1fr); }
            
            .process-steps { grid-template-columns: repeat(2, 1fr); }
            
            .map-info { grid-template-columns: 1fr; }
            .nearby-grid { grid-template-columns: repeat(2, 1fr); }
            
            .cta-box { padding: 40px 30px; }
        }
        
        @media (max-width: 768px) {
            
            
            
            .districts-grid { grid-template-columns: repeat(2, 1fr); }
            .process-steps { grid-template-columns: 1fr; }
            
            .nearby-grid { grid-template-columns: 1fr; }
            
        }
