/* =========================================================
   PRODUKTE – grafisch aufgelockerte Variante
========================================================= */

.produkte-hero {
    min-height: 100vh;
    padding: 118px 5vw 70px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.produkte-layout {
    position: relative;
    width: min(1450px, 100%);
    margin: 0 auto;
    display: grid;
    gap: 24px;
}

/* Dezente technische Hintergrundelemente */
.produkte-orbit {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    border: 1px solid rgba(75, 145, 255, 0.16);
    border-radius: 50%;
}

.produkte-orbit-one {
    width: 360px;
    height: 360px;
    top: -105px;
    right: -95px;
}

.produkte-orbit-two {
    width: 190px;
    height: 190px;
    bottom: 70px;
    left: -80px;
}

.produkte-band,
.produkte-grid {
    position: relative;
    z-index: 1;
}

/* =========================
   BEREICHSÜBERSCHRIFTEN
========================= */

.produkte-band {
    position: relative;
    padding: 27px 34px 28px 38px;
    overflow: hidden;

    background:
        linear-gradient(
            110deg,
            rgba(7, 23, 43, 0.94) 0%,
            rgba(9, 32, 58, 0.86) 68%,
            rgba(15, 52, 88, 0.76) 100%
        );

    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 18px;

    backdrop-filter: blur(13px);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.produkte-band::before {
    content: "";
    position: absolute;
    left: 0;
    top: 18px;
    bottom: 18px;
    width: 4px;
    border-radius: 0 4px 4px 0;
    background: #4b91ff;
}

.produkte-band::after {
    content: "";
    position: absolute;
    width: 210px;
    height: 210px;
    right: -65px;
    top: -115px;
    border: 1px solid rgba(75, 145, 255, 0.22);
    border-radius: 50%;
}

.produkte-band-label {
    display: block;
    margin-bottom: 8px;
    color: #66a4ff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2.2px;
}

.produkte-band h1,
.produkte-band h2 {
    max-width: 1050px;
    margin: 0;
    color: #fff;
    font-size: clamp(25px, 2.2vw, 36px);
    line-height: 1.18;
    letter-spacing: -0.02em;
}

/* =========================
   INHALTSKARTEN
========================= */

.produkte-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 0 22px;
}

.produkte-card {
    position: relative;
    min-height: 190px;
    padding: 30px 34px 32px;
    overflow: hidden;

    display: flex;
    flex-direction: column;
    justify-content: center;

    background:
        linear-gradient(
            145deg,
            rgba(5, 16, 29, 0.88),
            rgba(10, 29, 50, 0.78)
        );

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;

    backdrop-filter: blur(14px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.16);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease;
}

/* kleine grafische Ecke statt Nummerierung */
.produkte-card::before {
    content: "";
    position: absolute;
    width: 46px;
    height: 3px;
    left: 34px;
    top: 0;
    background: #4b91ff;
    border-radius: 0 0 4px 4px;
}

.produkte-card::after {
    content: "";
    position: absolute;
    width: 125px;
    height: 125px;
    right: -72px;
    bottom: -72px;
    border: 1px solid rgba(75, 145, 255, 0.13);
    border-radius: 50%;
}

.produkte-card:hover {
    transform: translateY(-5px);
    border-color: rgba(75, 145, 255, 0.58);
    background:
        linear-gradient(
            145deg,
            rgba(7, 20, 36, 0.94),
            rgba(13, 38, 65, 0.86)
        );
}

.produkte-card h2 {
    margin: 0 0 13px;
    color: #fff;
    font-size: clamp(23px, 1.8vw, 30px);
    line-height: 1.2;
    letter-spacing: -0.015em;
}

.produkte-card p {
    margin: 0;
    max-width: 620px;
    color: rgba(224, 232, 242, 0.88);
    font-size: 16px;
    line-height: 1.65;
}

/* Zweiter Themenblock bekommt etwas mehr Luft */
.produkte-grid + .produkte-band {
    margin-top: 18px;
}


/* =========================
   DIGITAL / PROZESS – PETROL
========================= */

.produkte-band-digital {
    background:
        linear-gradient(
            110deg,
            rgba(6, 28, 35, 0.95) 0%,
            rgba(8, 43, 52, 0.88) 68%,
            rgba(10, 62, 70, 0.78) 100%
        );

    border-color: rgba(64, 215, 200, 0.20);
}

.produkte-band-digital::before {
    background: #40d7c8;
}

.produkte-band-digital::after {
    border-color: rgba(64, 215, 200, 0.22);
}

.produkte-band-digital .produkte-band-label {
    color: #40d7c8;
}

.produkte-grid-digital .produkte-card {
    background:
        linear-gradient(
            145deg,
            rgba(6, 23, 29, 0.90),
            rgba(9, 39, 46, 0.80)
        );
}

.produkte-grid-digital .produkte-card::before {
    background: #40d7c8;
}

.produkte-grid-digital .produkte-card::after {
    border-color: rgba(64, 215, 200, 0.14);
}

.produkte-grid-digital .produkte-card:hover {
    border-color: rgba(64, 215, 200, 0.58);

    background:
        linear-gradient(
            145deg,
            rgba(7, 28, 34, 0.96),
            rgba(11, 50, 57, 0.88)
        );
}

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

@media (max-width: 900px) {
    .produkte-hero {
        min-height: auto;
        padding: 115px 22px 45px;
    }

    .produkte-layout {
        gap: 18px;
    }

    .produkte-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0;
    }

    .produkte-card {
        min-height: 0;
        padding: 27px 25px;
    }

    .produkte-card::before {
        left: 25px;
    }

    .produkte-band {
        padding: 23px 25px 24px 29px;
    }

    .produkte-grid + .produkte-band {
        margin-top: 10px;
    }

    .produkte-orbit {
        display: none;
    }
}
