/* Basis-Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', 'Arial', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #f4f4f4;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles - Bau-Style */
.site-header {
    background: #1a1a1a;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 4px solid #e53935;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.site-logo a {
    font-size: 1.6rem;
    color: #e53935;
    text-decoration: none;
    white-space: nowrap;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Navigation */
.main-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    white-space: nowrap;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #e53935;
    transition: width 0.3s;
}

.nav-menu a:hover {
    color: #e53935;
}

.nav-menu a:hover::after {
    width: 100%;
}

.header-cta {
    flex-shrink: 0;
}

.cta-button-small {
    background: #e53935;
    color: #fff;
    padding: 12px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    white-space: nowrap;
    display: inline-block;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    border: 2px solid #e53935;
}

.cta-button-small:hover {
    background: #c62828;
    border-color: #c62828;
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: #e53935;
    transition: 0.3s;
}

/* Hero Section - Industrieller Look */
.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
    color: white;
    padding: 120px 20px 100px;
    text-align: center;
    position: relative;
    margin-top: 0;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(229,57,53,0.03) 35px, rgba(229,57,53,0.03) 70px);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(229,57,53,0.1);
    border-radius: 50%;
    filter: blur(100px);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
    color: #fff;
}

.hero h1::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: #e53935;
    margin: 20px auto 0;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.hero-image {
    margin-top: 60px;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
    border: 4px solid #e53935;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* CTA Buttons - Kräftig */
.cta-button {
    display: inline-block !important;
    padding: 14px 32px !important; /* Ausgewogenes Padding */
    font-size: 0.92rem !important; /* Etwas kleinere Schrift */
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px !important;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.8px !important; /* Weniger Buchstabenabstand */
    border: 3px solid transparent;
    white-space: nowrap !important;
}

.cta-primary {
    background: #e53935 !important;
    color: #fff !important;
    border-color: #e53935 !important;
}

.cta-primary:hover {
    background: #c62828 !important;
    border-color: #c62828 !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(229,57,53,0.3);
}

.cta-secondary {
    background: #2c3e50 !important;
    color: #fff !important;
    border-color: #2c3e50 !important;
}

.cta-secondary:hover {
    background: #e53935 !important;
    border-color: #e53935 !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(44,62,80,0.4);
}


/* Machine Info - Professionell */
.machine-info {
    padding: 80px 20px;
    background: #fff;
    position: relative;
}

.machine-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #e53935 0%, #ef5350 100%);
}

.machine-info h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
    color: #1a1a1a;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 20px;
}

.machine-info h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #e53935;
}

.content,
.gutenberg-content,
.default-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.9;
    font-size: 1.1rem;
}

.gutenberg-content h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    margin-top: 40px;
    color: #1a1a1a;
    font-weight: 900;
    text-transform: uppercase;
}

.gutenberg-content h3 {
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #e53935;
    font-weight: 700;
}

.gutenberg-content p {
    margin-bottom: 20px;
    color: #555;
}

.gutenberg-content ul,
.gutenberg-content ol {
    margin: 20px 0 20px 30px;
}

.gutenberg-content li {
    margin-bottom: 10px;
    color: #555;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.badge {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
    color: #fff;
    padding: 18px 35px;
    border-radius: 4px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border-left: 4px solid #e53935;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

/* Usage Preview - Markant */
.usage-preview {
    padding: 80px 20px;
    background: linear-gradient(135deg, #2c3e50 0%, #1a1a1a 100%);
    color: #fff;
    text-align: center;
}

.usage-preview h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.usage-preview p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.9;
}

.link-button {
    color: #e53935;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #e53935;
    padding-bottom: 5px;
}

.link-button:hover {
    color: #fff;
    border-bottom-color: #fff;
}

/* Final CTA - Kraftvoll */
.final-cta {
    background: #e53935;
    color: #fff;
    padding: 90px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(0,0,0,0.05) 35px, rgba(0,0,0,0.05) 70px);
}

.final-cta .container {
    position: relative;
    z-index: 1;
}

.final-cta h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.final-cta p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    font-weight: 600;
}

/* Footer - Industriell */
.site-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 0;
    margin-top: 0;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #e53935;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    padding: 70px 20px 50px;
    border-bottom: 1px solid #333;
}

.footer-col h3 {
    margin-bottom: 25px;
    font-size: 1.3rem;
    color: #e53935;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col p {
    line-height: 1.8;
    color: #ccc;
}

.footer-col a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #e53935;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 15px;
}

.footer-menu a {
    display: inline-block;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 20px;
    font-size: 0.9rem;
    color: #999;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.footer-links a:hover {
    color: #e53935;
}

/* Page Header - Kraftvoll */
.page-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
    border-bottom: 5px solid #e53935;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    font-weight: 400;
}

/* Page Content */
.page-content {
    padding: 80px 20px;
    background: #fff;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.9;
    font-size: 1.1rem;
}

/* Usage Grid */
.usage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.usage-card {
    background: #fff;
    padding: 35px;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border-left: 5px solid #e53935;
}

.usage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.usage-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
    text-transform: uppercase;
}

/* FAQ - Fixed Version */
.faq-content {
    padding: 80px 20px;
    background: #f4f4f4;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-left: 5px solid #e53935;
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.faq-question {
    width: 100%;
    background: #fff;
    border: none;
    padding: 25px 30px;
    text-align: left;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.faq-question:hover {
    background: #f9f9f9;
}

.faq-item.active .faq-question {
    background: #1a1a1a;
    color: #fff;
}

.faq-icon {
    font-size: 2rem;
    color: #e53935;
    font-weight: 300;
    min-width: 30px;
    text-align: center;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    background: #f9f9f9;
    border-top: 2px solid #e53935;
}

.faq-item.active .faq-answer {
    display: block;
    padding: 25px 30px;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-answer p {
    line-height: 1.8;
    color: #555;
    font-size: 1.05rem;
    margin: 0;
}

/* CTA Section FAQ */
.cta-section-faq,
.cta-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
    padding: 80px 20px;
    margin-top: 0;
    border-top: 5px solid #e53935;
}

.cta-section-faq .cta-content,
.cta-section .container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.cta-section-faq .cta-text,
.cta-section h2 {
    flex: 1;
    color: white;
}

.cta-section-faq h2,
.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: white;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-section p {
    font-size: 1.2rem;
    color: white;
    opacity: 0.9;
}

/* Contact Page */
.contact-content {
    padding: 80px 20px;
    background: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
}

.contact-info h2,
.contact-extra h3 {
    color: #1a1a1a;
    margin-bottom: 25px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-details,
.opening-hours {
    margin-top: 30px;
    padding: 25px;
    background: #f4f4f4;
    border-radius: 0;
    border-left: 4px solid #e53935;
}

.contact-benefits ul {
    list-style: none;
    padding: 0;
}

.contact-benefits li {
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
    font-weight: 600;
}

/* About Page - Neues Design */

/* Intro Split Section */
.about-intro-split {
    padding: 80px 20px;
    background: #fff;
}

.intro-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 20px;
    color: #555;
}

.intro-image img {
    width: 100%;
    height: auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    border-left: 5px solid #e53935;
}

.intro-image.placeholder {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 5px solid #e53935;
}

.placeholder-icon {
    font-size: 8rem;
    opacity: 0.3;
}

/* Stats Section Prominent - Clean & Simple */
.stats-section-prominent {
    padding: 80px 20px;
    background: linear-gradient(135deg, #2c3e50 0%, #1a1a1a 100%);
    color: #fff;
}

.stats-section-prominent h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stats-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item-large {
    text-align: center;
    padding: 40px 25px;
    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(255,255,255,0.15);
    transition: all 0.3s ease;
}

.stat-item-large:hover {
    background: rgba(255,255,255,0.08);
    border-color: #e53935;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
    opacity: 0.9;
}

.stat-item-large .stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #e53935;
    margin-bottom: 12px;
    line-height: 1;
    word-break: break-word;
}

.stat-item-large .stat-label {
    font-size: 0.95rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    opacity: 0.9;
    line-height: 1.4;
}


/* Mission & Vision Split */
.mission-vision-split {
    padding: 80px 20px;
    background: #f4f4f4;
}

.mission-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.mission-card-large {
    background: #fff;
    padding: 50px 40px;
    border-top: 5px solid #e53935;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.mission-card-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.card-header .icon {
    font-size: 3.5rem;
}

.card-header h2 {
    font-size: 2rem;
    color: #1a1a1a;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.mission-card-large p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

/* Why Choose Us About */
.why-choose-us-about {
    padding: 80px 20px;
    background: #fff;
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-center h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header-center p {
    font-size: 1.2rem;
    color: #666;
}

.benefits-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-item-compact {
    background: #f9f9f9;
    padding: 35px 30px;
    border-left: 5px solid #e53935;
    transition: all 0.3s;
}

.benefit-item-compact:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.benefit-number {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(229,57,53,0.2);
    line-height: 1;
    margin-bottom: 15px;
}

.benefit-item-compact h3 {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 700;
}

.benefit-item-compact p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

/* Values Section */
.values-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
    color: #fff;
}

.values-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.values-icon {
    font-size: 5rem;
    margin-bottom: 30px;
}

.values-content h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.values-text {
    font-size: 1.3rem;
    line-height: 1.9;
    opacity: 0.95;
}

/* Site Main */
.site-main {
    padding: 80px 20px;
    min-height: 50vh;
    background: #fff;
}

.site-main article {
    max-width: 900px;
    margin: 0 auto;
}

.site-main h1 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 900;
    text-transform: uppercase;
}

.entry-content {
    line-height: 1.9;
    font-size: 1.1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .main-navigation {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #1a1a1a;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    }
    
    .main-navigation.active {
        display: block;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 15px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-cta {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .trust-badges {
        flex-direction: column;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 50px 20px 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 25px 20px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .intro-split-grid,
    .mission-split-grid {
        grid-template-columns: 1fr;
    }
    
    .intro-text h2,
    .section-header-center h2,
    .values-content h2 {
        font-size: 2rem;
    }
    
    .stats-grid-large {
        grid-template-columns: 1fr;
    }
    
    .stat-item-large .stat-number {
        font-size: 3rem;
    }
    
    .benefits-grid-compact {
        grid-template-columns: 1fr;
    }
    
    .card-header {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-section-faq .cta-content,
    .cta-section .container {
        flex-direction: column;
        text-align: center;
    }
}
/* Leistungen Page - Baubranchen Style */
.leistungen-intro {
    padding: 60px 20px;
    background: #fff;
    text-align: center;
    border-bottom: 3px solid #e53935;
}

.leistungen-intro .intro-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
}

/* Maschinenpark Section */
.maschinenpark-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, #f9f9f9 0%, #f4f4f4 100%);
    position: relative;
}

.maschinenpark-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #e53935 0%, #ef5350 100%);
}

.maschinenpark-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 20px;
}

.maschinenpark-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #e53935;
}

.maschinen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    max-width: 1300px;
    margin: 60px auto 0;
}

.maschine-card {
    background: #fff;
    padding: 40px 35px;
    border-left: 5px solid #e53935;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.maschine-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, transparent 50%, rgba(229,57,53,0.05) 50%);
    pointer-events: none;
}

.maschine-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(0,0,0,0.15);
    border-left-width: 8px;
}

.maschine-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
    filter: grayscale(0.3);
    transition: filter 0.3s;
}

.maschine-card:hover .maschine-icon {
    filter: grayscale(0);
    transform: scale(1.1);
    transition: transform 0.3s;
}

.maschine-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.maschine-card > p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
    border-left: 3px solid #f0f0f0;
    padding-left: 15px;
}

.maschine-specs {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 0;
}

.maschine-specs li {
    padding: 10px 0;
    color: #333;
    font-size: 0.95rem;
    font-weight: 600;
    border-bottom: 1px solid #e8e8e8;
    position: relative;
    padding-left: 30px;
}

.maschine-specs li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #e53935;
    font-weight: bold;
    font-size: 1.2rem;
}

.maschine-specs li:last-child {
    border-bottom: none;
}

/* Services Section */
.services-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
    color: #fff;
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(229,57,53,0.03) 35px, rgba(229,57,53,0.03) 70px);
    pointer-events: none;
}

.services-section .container {
    position: relative;
    z-index: 1;
}

.services-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    background: rgba(255,255,255,0.05);
    padding: 40px 35px;
    text-align: center;
    border: 2px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.service-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: #e53935;
    transition: width 0.4s ease;
}

.service-item:hover::after {
    width: 100%;
}

.service-item:hover {
    background: rgba(229,57,53,0.15);
    border-color: #e53935;
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.service-icon {
    font-size: 3.8rem;
    margin-bottom: 20px;
    display: block;
    opacity: 0.9;
    transition: all 0.3s;
}

.service-item:hover .service-icon {
    transform: scale(1.15);
    opacity: 1;
}

.service-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
}

/* Mobile Leistungen */
@media (max-width: 768px) {
    .maschinen-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .maschinenpark-section h2,
    .services-section h2 {
        font-size: 2rem;
    }
    
    .maschine-card,
    .service-item {
        padding: 30px 25px;
    }
}
/* Einsatzgebiete Page */
.page-einsatzgebiete .page-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.page-einsatzgebiete .page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.page-einsatzgebiete .page-header .subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    font-weight: 400;
}

/* Intro Section */
.einsatzgebiete-intro {
    padding: 60px 20px;
    background: #fff;
}

.einsatzgebiete-intro .intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
}

/* Einsatzgebiete Section */
.einsatzgebiete-section {
    padding: 80px 20px;
    background: #f9f9f9;
}

/* Bild über "Unsere Standorte" */
.einsatzgebiete-section .intro-image {
    max-width: 550px;
    margin: 0 auto 50px auto;
    text-align: center;
}

.einsatzgebiete-section .intro-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.einsatzgebiete-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
    margin-top: 20px;
    color: #1a1a1a;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.einsatzgebiete-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 60px auto;
}

.einsatzgebiet-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.einsatzgebiet-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.region-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: #e53935;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-bottom: 15px;
    border-bottom: 3px solid #e53935;
}

.staedte-liste {
    list-style: none;
    padding: 0;
    margin: 0;
}

.staedte-liste li {
    padding: 8px 0;
    font-size: 1.05rem;
    border-bottom: 1px solid #f0f0f0;
}

.staedte-liste li:last-child {
    border-bottom: none;
}

.staedte-liste li a {
    color: #333;
    text-decoration: none;
    display: block;
    transition: all 0.2s ease;
    padding-left: 0;
}

.staedte-liste li a:hover {
    color: #e53935;
    padding-left: 8px;
    font-weight: 600;
}

/* Info Box */
.einsatzgebiete-info {
    max-width: 800px;
    margin: 60px auto 0 auto;
    text-align: center;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-top: 4px solid #e53935;
}

.einsatzgebiete-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 800;
    text-transform: uppercase;
}

.einsatzgebiete-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.einsatzgebiete-info strong {
    color: #e53935;
    font-weight: 700;
}

@media (max-width: 768px) {
    .page-einsatzgebiete .page-header h1 {
        font-size: 2rem;
    }
    
    .einsatzgebiete-grid {
        grid-template-columns: 1fr;
    }
    
    .einsatzgebiete-section h2 {
        font-size: 2rem;
    }
    
    .einsatzgebiete-section .intro-image {
        max-width: 90%;
        margin-bottom: 30px;
    }
    
    .einsatzgebiete-info {
        padding: 30px 20px;
    }
}
/* Maschinen-Card Button - Einfache Version */
.maschine-card {
    display: flex !important;
    flex-direction: column !important;
}

.maschine-specs {
    margin-bottom: 20px !important;
}

.maschine-button {
    display: block !important;
    width: fit-content !important;
    margin: 20px auto 0 auto !important; /* Zentriert horizontal */
    padding: 12px 35px !important;
    background: #fff !important;
    color: #e53935 !important;
    text-decoration: none !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    border: 2px solid #e53935 !important;
    border-radius: 4px !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
}

.maschine-button:hover {
    background: #e53935 !important;
    color: #fff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(229, 57, 53, 0.3) !important;
}
