/* GRUNDEINSTELLUNGEN */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #222;
    line-height: 1.6;
}

/* FARBEN */
:root {
    --blue: #1971e6;
    --orange: #ff8c00;
    --white: #ffffff;
    --dark: #222222;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 4px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--blue);
    color: var(--white);
}

.btn-primary:hover {
    background: #125bc0;
}

.btn-outline {
    border: 2px solid var(--blue);
    color: var(--blue);
}

.btn-outline:hover {
    background: var(--blue);
    color: var(--white);
}

.btn-outline-white {
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--blue);
}

.btn-large {
    padding: 14px 26px;
    font-size: 1.1rem;
}

/* MINI HEADER */
.mini-header {
    background: var(--white);
    border-bottom: 1px solid #eee;
}

.header-inner {
    max-width: 1200px;
    margin: auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 50px;
}

.header-buttons a {
    margin-left: 10px;
}

/* HERO */
.hero {
    position: relative;
    width: 100%;
    min-height: 70vh;
    background: url("Bilder/Arbeitsbuehne-Muenchen.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.hero-content {
    position: relative;
    max-width: 900px;
    padding: 40px;
    color: var(--white);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero-cta a {
    margin-right: 15px;
}

/* WARUM SECTION */
.why {
    background: #f7f9fc;
    padding: 80px 20px;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.why h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: var(--blue);
}

/* FEATURES GRID */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-box {
    background: var(--white);
    padding: 30px;
    border-radius: 6px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.feature-box .icon {
    font-size: 2rem;
    color: var(--orange);
    margin-bottom: 15px;
    display: inline-block;
}

.feature-box h3 {
    margin-bottom: 10px;
    color: var(--blue);
}
.machines {
    padding: 80px 20px;
    background: #ffffff;
}

.machines h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: var(--blue);
}

.machines-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.machine-box {
    background: #fff;
    border-radius: 6px;
    text-decoration: none;
    color: var(--dark);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.machine-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.15);
}

.machine-image {
    width: 100%;
    height: 260px;               /* feste Bildfläche */
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7f9fc;         /* neutraler Hintergrund */
}

.machine-image img {
    max-height: 100%;
    max-width: 90%;
    object-fit: contain;  
aspect-ratio: 4 / 3; 
    background: #f7f9fc;
}

.machine-box h3 {
    text-align: center;
    padding: 20px 15px 10px;
    color: var(--blue);
}

.machine-box ul {
    list-style: none;
    padding: 0 20px;
    margin-bottom: 10px;
}

.machine-box ul li {
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.machine-box p {
    padding: 0 20px 25px;
    font-size: 0.95rem;
    text-align: center;
}
.use-cases {
    background: var(--blue);
    padding: 90px 20px;
    color: var(--white);
}

.expert-knowledge {
    background: var(--blue);
    padding: 90px 20px;

}
.use-cases h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 15px;
}

.use-cases-subtitle {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 60px;
    opacity: 0.9;
}

/* GRID */
.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* BOXEN */
.use-case-box {
    background: rgba(255, 255, 255, 0.12);
    padding: 35px 30px;
    border-radius: 8px;
    backdrop-filter: blur(3px);
    transition: transform 0.3s ease, background 0.3s ease;
}

.use-case-box:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.18);
}

.use-case-box h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.use-case-highlight {
    font-weight: bold;
    color: var(--orange);
    margin-bottom: 15px;
}

.use-case-box p {
    font-size: 0.95rem;
    line-height: 1.6;
}
.rental-process {
    padding: 90px 20px;
    background: #f7f9fc;
}

.rental-process h2 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--blue);
    margin-bottom: 70px;
}

/* TIMELINE */
.process-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* LINIE */
.process-timeline::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 5%;
    right: 5%;
    height: 4px;
    background: var(--blue);
    z-index: 1;
}

/* STEP */
.process-step {
    position: relative;
    text-align: center;
    z-index: 2;
}

.step-circle {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    background: var(--blue);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.3rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-step h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.process-step p {
    font-size: 0.95rem;
    line-height: 1.5;
}
.faq {
    padding: 90px 20px;
    background: #ffffff;
}

.faq h2 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--blue);
    margin-bottom: 60px;
}

.faq-item {
    max-width: 900px;
    margin: 0 auto 15px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    overflow: hidden;
}

.faq-item details {
    background: #f7f9fc;
    padding: 20px 25px;
}

.faq-item summary {
    cursor: pointer;
    font-weight: bold;
    font-size: 1.05rem;
    color: var(--blue);
    list-style: none;
    position: relative;
    padding-right: 30px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.4rem;
    color: var(--orange);
}

.faq-item details[open] summary::after {
    content: "–";
}

.faq-item p {
    margin-top: 15px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #333;
}
.site-footer {
    background: #0f2f57;
    color: #ffffff;
    font-size: 0.95rem;
}

.footer-main {
    padding: 70px 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 2fr 1.5fr 1.5fr;
    gap: 40px;
}

.footer-logos {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.footer-logo {
    height: 60px;
}

.footer-partner-logo {
    height: 45px;
    opacity: 0.9;
}

.footer-col h4 {
    color: var(--orange);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-col p {
    line-height: 1.6;
    opacity: 0.9;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.9;
}

.footer-col a:hover {
    color: var(--orange);
    opacity: 1;
}

/* BOTTOM */
.footer-bottom {
    background: #0b223f;
    padding: 15px 20px;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.9;
}
/* RATING BADGE HERO */
.rating-badge {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 50px;
    width: fit-content;
    backdrop-filter: blur(5px);
}

.rating-badge .stars {
    color: #ffcc00; /* Goldgelb für die Sterne */
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.rating-badge .rating-text {
    font-size: 0.95rem;
    font-weight: bold;
    color: var(--white);
}
.sticky-mobile-call {
    display: none; /* Standardmäßig aus */
}
.location-box {
    background: #f0f4f8;
    border-left: 5px solid var(--orange);
    padding: 20px;
    margin: 20px 0;
    border-radius: 4px;
}
.location-box h4 {
    color: var(--blue);
    margin-bottom: 5px;
}
.trust-banner {
    background: #eef4fb;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    border: 1px solid #d1e1f5;
    display: flex;
    align-items: center;
    gap: 15px;
}
.trust-banner span { font-size: 1.5rem; }
/* ZUSATZ FÜR SEO-ELEMENTE */
.location-box {
    background: #eef4fb;
    border-left: 5px solid var(--orange);
    padding: 25px;
    margin: -40px auto 40px; /* Schiebt die Box leicht in den Hero-Bereich */
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    z-index: 10;
    max-width: 1000px;
}

.location-box h4 {
    color: var(--blue);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

/* Fix für Bilder-Rendering */
.machine-image img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}
/* RESPONSIVE */
@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h1 {
        font-size: 2.4rem;
    }
	    .machines-grid {
        grid-template-columns: repeat(2, 1fr);
    }
	    .use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
	.process-timeline {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 60px;
    }

    .process-timeline::before {
        display: none;
    }
	.footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .header-inner {
        flex-direction: column;
        gap: 10px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding: 25px;
    }

    .hero h1 {
        font-size: 2rem;
    }
	    .machines-grid {
        grid-template-columns: 1fr;
    }
	    .machine-image {
        height: 220px;
    }
	.use-cases-grid {
        grid-template-columns: 1fr;
    }

    .use-cases {
        padding: 70px 20px;
    }
	.process-timeline {
        grid-template-columns: 1fr;
    }
	    .faq {
        padding: 70px 20px;
    }
	    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-main {
        padding: 50px 20px;
    }
	    .footer-logos {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-partner-logo {
        height: 40px;
    }
	  .hero-cta { display:flex; flex-direction:column; gap:10px; }
  .btn-large { width:100%; text-align:center; }
  .sticky-mobile-call {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 60px;
        background: var(--blue);
        color: var(--white);
        text-decoration: none;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        font-size: 1.1rem;
        z-index: 9999;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    }

    .sticky-mobile-call .icon-phone {
        margin-right: 10px;
        font-size: 1.3rem;
    }

    /* Damit der Footer nicht vom Button verdeckt wird */
    body {
        padding-bottom: 60px; 
    }
}
