.home-features-bar-section {
    font-family: 'Montserrat', sans-serif;
    background: #ffffff;
}

.home-features-bar-section .hero-inner {
    padding-top: 0.75rem;
    padding-bottom: 1.5rem;
}

.home-features-bar {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    background: linear-gradient(135deg, #003d8f 0%, #00266c 55%, #001f52 100%);
    border-radius: 18px;
    padding: 1.35rem 0.75rem;
    isolation: isolate;
}

.home-features-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 12% 50%, rgba(255, 255, 255, 0.07) 0%, transparent 32%),
        radial-gradient(circle at 88% 35%, rgba(255, 255, 255, 0.06) 0%, transparent 36%),
        radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: auto, auto, 24px 24px;
    pointer-events: none;
    z-index: 0;
}

.home-features-bar::after {
    content: '';
    position: absolute;
    right: -55px;
    top: 50%;
    transform: translateY(-50%);
    width: 210px;
    height: 210px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        inset 0 0 0 18px rgba(255, 255, 255, 0.03),
        -120px -20px 0 -90px rgba(255, 255, 255, 0.04),
        -120px -20px 0 -70px rgba(255, 255, 255, 0.06);
    pointer-events: none;
    z-index: 0;
}

.home-features-bar-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.35rem 0.85rem;
    position: relative;
    z-index: 1;
}

.home-features-bar-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 12%;
    bottom: 12%;
    width: 1px;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(255, 255, 255, 0.35) 20%,
        rgba(255, 255, 255, 0.35) 80%,
        transparent 100%
    );
}

.home-features-bar-icon {
    flex-shrink: 0;
    width: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.home-features-bar-icon i {
    font-size: 1.65rem;
    line-height: 1;
}

.home-features-bar-icon-dual {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.home-features-bar-icon-dual i {
    font-size: 1.35rem;
}

.home-features-bar-text strong {
    display: block;
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 0.15rem;
}

.home-features-bar-text span {
    display: block;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.68rem;
    font-weight: 500;
    line-height: 1.35;
}

.home-features-bar-section + .home-community-section .hero-inner {
    padding-top: 0.25rem;
}

.home-features-bar-section + #packages {
    padding-top: 0 !important;
}

@media (max-width: 1199.98px) {
    .home-features-bar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem 0;
        padding: 1.25rem 1rem;
    }

    .home-features-bar-item {
        padding: 0.5rem 0.75rem;
    }

    .home-features-bar-item::after {
        display: none;
    }

    .home-features-bar-item:nth-child(odd):not(:last-child)::after {
        display: block;
    }

    .home-features-bar-item:nth-child(2n)::after {
        display: none;
    }

    .home-features-bar-item:nth-child(5)::after {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .home-features-bar {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: 1.1rem 0.85rem;
    }

    .home-features-bar-item::after {
        display: none !important;
    }

    .home-features-bar-item:not(:last-child) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        padding-bottom: 0.85rem;
        margin-bottom: 0.35rem;
    }
}
