.pu-insight-page-security-section {
    background-color: var(--pu-insight-navy);
    padding: 85px 0 95px;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.pu-insight-page-security-header {
    margin-bottom: 44px;
}

.pu-insight-page-security-kicker {
    font-family: var(--pu-insight-font-body);
    font-size: 36px;
    font-weight: 600;
    color: #FFFFFF;
    display: block;
    margin-bottom: 8px;
}

.pu-insight-page-security-header h2 {
    font-family: var(--pu-insight-font-heading);
    font-weight: 700;
    font-size: 48px;
    line-height: 1.14;
    color: #FFFFFF;
    margin-bottom: 16px;
    max-width: 860px;
}

.pu-insight-page-security-header p {
    font-family: var(--pu-insight-font-body);
    font-size: 18px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    max-width: 960px;
}

/* Quick Stats Box */
.pu-insight-page-security-stats-box {
    background-color: #160D49;
    border-radius: 20px;
    padding: 38px 54px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    margin-bottom: 44px;
    border: 1px solid #FFFFFF;
}

.pu-insight-page-security-stat-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 40px;
    position: relative;
}

.pu-insight-page-security-stat-item:first-child {
    padding-left: 0;
}

.pu-insight-page-security-stat-item:last-child {
    padding-right: 0;
}

.pu-insight-page-security-stat-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 75px;
    width: 2px;
    background-color: #D9D9D940;
}

.pu-insight-page-sec-stat-num {
    font-family: var(--pu-insight-font-heading);
    font-weight: 700;
    font-size: 44px;
    line-height: 1.1;
    color: #FFFFFF;
    margin-bottom: 6px;
}

.pu-insight-page-sec-stat-label {
    font-family: var(--pu-insight-font-body);
    font-size: 15px;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

/* 6 Cards Slider Wrapper & Track */
.pu-insight-page-security-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 32px;
}

.pu-insight-page-security-track {
    display: flex;
    gap: 24px;
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
}

.pu-insight-page-security-track::-webkit-scrollbar {
    display: none;
}

.pu-insight-page-security-card {
    flex: 0 0 calc((100% - 48px) / 3);
    height: 280px;
    border-radius: 20px;
    padding: 32px 28px;
    background: 
        linear-gradient(#FFFFFF, #FFFFFF) padding-box, 
        linear-gradient(135deg, #B53C72 0%, #5641E0 100%) border-box;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    scroll-snap-align: start;
}

.pu-insight-page-security-card h3 {
    font-family: var(--pu-insight-font-heading);
    font-weight: 700;
    font-size: 32px;
    line-height: 1.22;
    background: linear-gradient(90deg, #B53C72 0%, #5641E0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    margin-bottom: 14px;
}

.pu-insight-page-security-card p {
    font-family: var(--pu-insight-font-body);
    font-size: 18px;
    line-height: 1.48;
    color: #4A4D54;
    margin: 0;
}

/* Controls */
.pu-insight-page-security-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.pu-insight-page-security-progress {
    flex: 1;
    height: 3px;
    background-color: #FFFFFF;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.pu-insight-page-security-bar {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 33.33%;
    background-color: var(--pu-insight-yellow);
    border-radius: 4px;
    transition: left 0.4s ease, width 0.4s ease;
}

.pu-insight-page-security-arrows {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pu-insight-page-security-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: transparent;
    border: none !important;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pu-insight-page-security-btn:hover {
    opacity: 1;
    color: var(--pu-insight-yellow);
    border-color: var(--pu-insight-yellow);
    transform: scale(1.08);
}

.pu-insight-page-security-btn.disabled {
    opacity: 0.25;
    cursor: not-allowed;
    pointer-events: none;
}

.pu-insight-page-security-dots {
    display: none;
}

/* Responsive Mobile Layout for Security Section (< 991.98px) */
@media (max-width: 991.98px) {
    .pu-insight-page-security-section {
        padding: 50px 0 60px;
    }

    .pu-insight-page-security-header {
        margin-bottom: 28px;
    }

    .pu-insight-page-security-kicker {
        font-size: 24px;
        margin-bottom: 6px;
    }

    .pu-insight-page-security-header h2 {
        font-size: 28px;
        line-height: 1.18;
        margin-bottom: 12px;
    }

    .pu-insight-page-security-header p {
        font-size: 14px;
        line-height: 1.45;
    }

    /* Mobile Stats Grid Layout matching Figma */
    .pu-insight-page-security-stats-box {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0;
        background: transparent;
        border: none;
        margin-bottom: 28px;
        width: 100%;
        box-sizing: border-box;
    }

    .pu-insight-page-security-stat-item {
        background: #19104E;
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.4);
        padding: 16px 20px;
        box-sizing: border-box;
    }

    .pu-insight-page-security-stat-item::after {
        display: none !important;
    }

    /* 1st & 4th Items (Full-Width Flex Row): 24x7 and 27,000+ */
    .pu-insight-page-security-stat-item:nth-child(1),
    .pu-insight-page-security-stat-item.pu-insight-page-stat-item-1,
    .pu-insight-page-security-stat-item:nth-child(4),
    .pu-insight-page-security-stat-item.pu-insight-page-stat-item-4 {
        grid-column: span 2;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 16px;
        padding: 16px 20px;
    }

    /* 2nd & 3rd Items (Half-Width 2-Column Boxes - Flex Column): CCTV and 250 Acres */
    .pu-insight-page-security-stat-item:nth-child(2),
    .pu-insight-page-security-stat-item.pu-insight-page-stat-item-2,
    .pu-insight-page-security-stat-item:nth-child(3),
    .pu-insight-page-security-stat-item.pu-insight-page-stat-item-3 {
        grid-column: span 1;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 4px;
        padding: 18px 16px;
    }

    .pu-insight-page-sec-stat-num {
        font-family: var(--pu-insight-font-heading);
        font-weight: 700;
        font-size: 30px;
        line-height: 1;
        color: #FFFFFF;
        margin: 0;
        white-space: nowrap;
    }

    .pu-insight-page-sec-stat-label {
        font-family: var(--pu-insight-font-body);
        font-size: 13.5px;
        line-height: 1.3;
        color: rgba(255, 255, 255, 0.9);
        margin: 0;
    }

    /* Mobile Edge Bleed Slider Track */
    .pu-insight-page-security-slider-wrapper {
        overflow: visible;
        width: calc(100% + 30px);
        margin-left: -15px;
        margin-right: -15px;
        margin-bottom: 12px;
        padding: 0;
    }

    .pu-insight-page-security-track {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-padding-left: 15px;
        scroll-padding-right: 15px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 14px;
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        transform: none !important;
    }

    .pu-insight-page-security-track::-webkit-scrollbar {
        display: none;
    }

    .pu-insight-page-security-card {
        flex: 0 0 calc(100% - 54px);
        width: calc(100% - 54px);
        max-width: 336px;
        min-height: 165px;
		height: auto;
		max-height: 250px;
		overflow: scroll;
        scroll-snap-align: start;
        padding: 24px 20px;
        border-radius: 18px;
    }

    .pu-insight-page-security-card h3 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .pu-insight-page-security-card p {
        font-size: 14px;
        line-height: 1.45;
    }

    .pu-insight-page-security-controls {
        display: none;
    }

    .pu-insight-page-security-dots {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-top: 20px;
    }

    .pu-insight-page-security-dots .pu-insight-page-dot {
        background-color: rgba(255, 255, 255, 0.3);
    }

    .pu-insight-page-security-dots .pu-insight-page-dot.active {
        background-color: var(--pu-insight-yellow);
        width: 24px;
        border-radius: 50px;
    }
}
