.pol-hero {
    position: relative;
    background: var(--pol-bg-alt);
    padding: 60px 0 80px;
    overflow: hidden;
}

.pol-hero__bg {
    position: absolute;
    top: 0;
    bottom: 0;
    height: 100%;
    width: auto;
    object-fit: contain;
    object-position: bottom;
    pointer-events: none;
    z-index: 1;
}

.pol-hero__bg--left {
    left: 0;
    object-position: left bottom;
}

.pol-hero__bg--right {
    right: 0;
    object-position: right bottom;
}

.pol-hero__inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 920px;
    margin: 0 auto;
}

.pol-hero__logo {
    max-width: 720px;
    margin-bottom: 16px;
}

.pol-hero__logo img {
    width: 100%;
    height: auto;
}

.pol-hero__subtitle {
    color: var(--pol-text-muted);
    font-size: 16px;
    max-width: 680px;
    margin: 0 auto 32px;
}

.pol-hero__cta {
    margin-bottom: 60px;
}

.pol-hero__features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
    text-align: left;
    margin-top: 24px;
}

.pol-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.pol-feature__icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    object-fit: contain;
    margin-top: 4px;
}

.pol-feature__title {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.pol-feature__text {
    margin: 0;
    font-size: 13px;
    color: var(--pol-text-soft);
    line-height: 1.5;
}

@media (max-width: 1199px) {
    .pol-hero__bg {
        width: 30vw;
        max-width: 380px;
        opacity: 0.65;
    }
}

@media (max-width: 991px) {
    .pol-hero {
        padding: 48px 0 60px;
    }
    .pol-hero__bg {
        width: 22vw;
        opacity: 0.4;
    }
    .pol-hero__features {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

@media (max-width: 640px) {
    .pol-hero__bg {
        display: none;
    }
    .pol-hero__logo {
        max-width: 100%;
    }
    .pol-hero__subtitle {
        font-size: 16px;
    }
    .pol-hero__cta {
        margin-bottom: 40px;
    }
}
