/* ================================================= */
/* ================= HERO =========================== */
/* ================================================= */

/* ================= HERO ================= */

.hero {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 420px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    color: #ffffff;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

.hero-content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 600;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    max-width: 600px;
    margin-bottom: 32px;
}

.hero-button {
    display: inline-block;
    background: #ffffff;
    color: #000000;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.hero-button:hover {
    background: #e5e5e5;
}


/* ================================================= */
/* ================= ABLAUF ======================== */
/* ================================================= */

.ablauf-shapes {
    background: #595959;
    padding: 56px 0 64px;
}

.ablauf-shapes-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.ablauf-shapes h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
}

.ablauf-subtitle {
    font-size: 15px;
    color: #e2e2e2;
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.6;
}

.ablauf-shape-row {
    display: flex;
    justify-content: center;
    gap: 14px;
}

.ablauf-shape {
    background: #ffffff;
    padding: 38px 28px;
    width: 150px;
    text-align: left;
    clip-path: polygon(
        0 0,
        94% 0,
        100% 50%,
        94% 100%,
        0 100%,
        6% 50%
    );
    box-shadow: 0 10px 22px rgba(0,0,0,0.18);
}

.ablauf-shape h3 {
    font-size: 16px;
    font-weight: 600;
    color: #9c9c9c;
    margin-bottom: 14px;
}

.ablauf-shape p {
    font-size: 14px;
    line-height: 1.7;
    color: #444;
}


/* ================================================= */
/* ================= EINSATZGEBIET ================= */
/* ================================================= */

.einsatzgebiet {
    background-image: url("../Bilder/Schweiz.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 96px 24px;
}

.einsatzgebiet::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.99);
}

.einsatzgebiet-inner {
    position: relative;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.einsatzgebiet h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #111;
}

.einsatzgebiet p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}


/* ================================================= */
/* ================= FAQ =========================== */
/* ================================================= */

.faq-section {
    background: #f6f6f6;
    padding: 96px 24px;
}

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

.faq-section h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 48px;
    text-align: center;
}

.faq-section h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 32px 0 12px;
    color: #111;
    position: relative;
    padding-left: 14px;
}

.faq-section h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 4px;
    height: 18px;
    background: var(--accent);
}

.faq-section p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 8px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e5e5e5;
}


/* ================================================= */
/* ================= KOMPETENZEN =================== */
/* ================================================= */

.kompetenzen {
    background: #ffffff;
    padding: 60px 24px 100px;
}

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

.kompetenzen h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 48px;
}

.kompetenzen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.kompetenz-card {
    background: #f6f6f6;
    color: #000;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kompetenz-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.kompetenz-content {
    padding: 24px;
}

.kompetenz-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.kompetenz-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
}

.kompetenz-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}


/* ================================================= */
/* ================= SEO BLOCK ===================== */
/* ================================================= */

.seo-text-block {
    max-width: 760px;
    margin: 30px auto 50px;
    padding: 0 24px;
}

.seo-text-block h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 36px;
    color: #2f4f6f;
}

.seo-text-block p {
    font-size: 18px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 36px;
}


/* ================================================= */
/* ================= ÜBER UNS ====================== */
/* ================================================= */

.ueber-uns-editorial {
    background: #ffffff;
    padding: 0;
}

.ueber-uns-editorial-inner {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 5%;
}

.ueber-uns-bild {
    width: 70%;
}

.ueber-uns-bild img {
    width: 100%;
    height: auto;
    display: block;
}

.ueber-uns-box {
    position: absolute;
    right: 8%;
    background: #ffffff;
    padding: 56px;
    width: 520px;
}

.ueber-uns-box h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 24px;
}

.ueber-uns-box p {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 18px;
}

.ueber-uns-zitat {
    margin-top: 28px;
    font-style: italic;
    color: #555;
}

.ueber-uns-zitat span {
    display: block;
    margin-top: 8px;
    font-style: normal;
    font-weight: 500;
    color: #000;
}


/* ================================================= */
/* ================= WHY US ======================== */
/* ================================================= */

.why-us-clean {
    background: #ffffff;
    padding: 24px 0 120px;
}

.why-us-clean-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.why-us-clean h2 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #111;
}

.why-us-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 520px;
    margin: 0 auto 72px;
    line-height: 1.6;
}

.why-us-icons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 64px;
}

.why-us-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon-circle {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: #f5f6f8;
    border: 1px solid #e3e6ea;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.icon-circle img {
    width: 70%;
    height: 70%;
    object-fit: contain;
    display: block;
    mix-blend-mode: multiply;
}

.why-us-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 12px;
}

.why-us-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    max-width: 240px;
}


/* ================================================= */
/* ================= RESPONSIVE ==================== */
/* ================================================= */

@media (max-width: 1024px) {

    .hero-content h1 {
        font-size: 40px;
    }

    .ablauf-shape-row {
        flex-wrap: wrap;
        gap: 20px;
    }

    .ablauf-shape {
        width: 200px;
    }

    .kompetenzen-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ueber-uns-editorial-inner {
        flex-direction: column;
    }

    .ueber-uns-bild {
        width: 100%;
    }

    .ueber-uns-box {
        position: static;
        width: 100%;
        margin-top: -80px;
    }
}

@media (max-width: 768px) {

    .hero {
        height: 60vh;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .einsatzgebiet {
        padding: 72px 16px;
    }

    .einsatzgebiet h2 {
        font-size: 26px;
    }
}

@media (max-width: 640px) {

    .kompetenzen {
        padding: 72px 16px;
    }

    .kompetenzen h2 {
        font-size: 28px;
    }

    .kompetenzen-grid {
        grid-template-columns: 1fr;
    }

    .ueber-uns-editorial {
        padding: 80px 0;
    }

    .ueber-uns-box {
        padding: 32px 24px;
        margin-top: -40px;
    }

    .ueber-uns-box h2 {
        font-size: 26px;
    }
}

@media (max-width: 520px) {

    .why-us-icons {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-us-clean h2 {
        font-size: 32px;
    }

    .why-us-subtitle {
        margin-bottom: 48px;
    }
}