/* Power Features — dunkler Block mit 2 großen + 3 kleinen Kacheln */

.power-features {
    padding: 64px var(--content-padding) 80px;
}

.power-features__inner {
    max-width: var(--content-max);
    margin: 0 auto;
    padding: clamp(36px, 5vw, 56px) clamp(24px, 3.5vw, 40px);
    border-radius: clamp(24px, 3vw, 32px);
    background: #0a0a0c;
    color: #fff;
    overflow: hidden;
}

.power-features__title {
    max-width: 640px;
    margin: 0 auto 40px;
    text-align: center;
}

.power-features__hero-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(16px, 2.5vw, 24px);
    margin-bottom: clamp(32px, 4vw, 44px);
    list-style: none;
}

.power-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 20px;
    background: #16161c;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.power-card--aktuell {
    width: 88%;
    max-width: 100%;
    justify-self: center;
}

.power-card__visual {
    position: relative;
    min-height: 0;
    background: #121218;
    overflow: hidden;
}

.power-card__visual--cloud {
    width: 100%;
    min-height: 0;
    aspect-ratio: 420 / 332;
    background: #111;
}

.power-card__iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    pointer-events: none;
}

.power-card--hosting {
    width: 88%;
    max-width: 100%;
    justify-self: center;
}

.power-card__visual--secure {
    width: 100%;
    min-height: 0;
    aspect-ratio: 420 / 332;
    background: #111;
}

.power-card__body {
    padding: 20px 24px 24px;
    text-align: left;
}

.power-card__title {
    margin-bottom: 10px;
}

.power-features__mini-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(24px, 4vw, 48px);
    list-style: none;
}

.power-mini {
    text-align: left;
}

.power-mini__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 18px;
    border-radius: 12px;
    background: #1e1e26;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
}

.power-mini__icon svg,
.power-mini__icon-img {
    width: 22px;
    height: 22px;
    display: block;
    filter: brightness(0) invert(1);
}

.power-mini__title {
    margin-bottom: 10px;
}

@media (max-width: 900px) {
    .power-features__hero-grid {
        grid-template-columns: 1fr;
    }

    .power-features__mini-grid {
        grid-template-columns: 1fr;
        gap: 36px;
        max-width: 480px;
        margin: 0 auto;
    }
}

@media (max-width: 520px) {
    .power-features {
        padding: 56px var(--content-padding) 72px;
    }

    .power-features__inner {
        padding: 40px 20px;
        border-radius: 20px;
    }

    .power-features__title {
        margin-bottom: 40px;
    }

    .power-card {
        border-radius: 16px;
    }

    .power-card__body {
        padding: 20px 20px 24px;
    }
}
