.pu-insight-page-stats-section {
    position: relative;
    width: 100%;
    background-color: #0F0445;
    padding: 70px 0;
    border-top: 5px solid #4F35E5;
    border-bottom: 5px solid #4F35E5;
}

.pu-insight-page-stats-wrapper {
    position: relative;
    width: 100%;
}

/* Video Column */
.pu-insight-page-stats-video-col {
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 15px;
    padding-right: 30px;
    position: relative;
    width: 100%;
}

.pu-insight-page-video-card {
    position: relative;
    width: 100%;
    max-width: 681px;
    aspect-ratio: 681 / 383.06;
    border-radius: 28.68px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
    cursor: pointer;
}

.pu-insight-page-youtube-iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 28.68px;
    display: block;
}

.pu-insight-page-video-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.pu-insight-page-video-card:hover .pu-insight-page-video-img {
    transform: scale(1.04);
}

.pu-insight-page-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--pu-insight-yellow);
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(255, 199, 0, 0.4);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.3s ease;
    z-index: 3;
}

.pu-insight-page-play-btn svg {
    color: #0F0445;
    width: 28px;
    height: 28px;
    margin-left: 4px;
}

.pu-insight-page-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.12);
    background-color: #FFD633;
}

/* Stats Grid Column & Divider Lines */
.pu-insight-page-stats-grid-col {
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 35px;
    padding-right: 15px;
    position: relative;
    width: 100%;
}

.pu-insight-page-stats-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 36px;
    row-gap: 0;
    width: 100%;
}

/* Standalone Center Vertical Divider Line (Exact 50% Center Figma Match) */
.pu-insight-page-stats-grid::before {
    content: '';
    position: absolute;
    top: 4px;
    bottom: 4px;
    left: 45%;
    transform: translateX(-50%);
    width: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    pointer-events: none;
}

.pu-insight-page-stat-item {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Top Row Items Horizontal Lines (~52% width exact Figma Match) */
.pu-insight-page-stat-top {
    position: relative;
    padding-bottom: 24px;
    margin-bottom: 28px;
    width: 100%;
}

.pu-insight-page-stat-top::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 52%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
}

.pu-insight-page-stat-number {
    font-family: var(--pu-insight-font-heading);
    font-weight: 700;
    font-size: 56px;
    line-height: 1.0;
    color: var(--pu-insight-yellow);
    margin-bottom: 6px;
    letter-spacing: -0.015em;
    white-space: nowrap;
}

.pu-insight-page-stat-label {
    font-family: var(--pu-insight-font-body);
    font-weight: 400;
    font-size: 21px;
    line-height: 1.35;
    color: #FFFFFF;
    margin: 0;
}

/* Intermediate Tablet-Desktop Breakpoint (992px - 1199px e.g. 1040px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .pu-insight-page-stats-video-col {
        padding-right: 15px;
    }

    .pu-insight-page-stats-grid-col {
        padding-left: 20px;
    }

    .pu-insight-page-stats-grid {
        column-gap: 20px;
    }

    .pu-insight-page-stats-grid::before {
        left: 48%;
    }

    .pu-insight-page-stat-number {
        font-size: 40px;
    }

    .pu-insight-page-stat-label {
        font-size: 16px;
        line-height: 1.3;
    }

    .pu-insight-page-stat-top {
        padding-bottom: 16px;
        margin-bottom: 20px;
    }
}

/* Independent Mobile Media Queries for Stats Section */
@media (max-width: 991.98px) {
    .pu-insight-page-stats-section {
        padding: 40px 0 45px;
        border-top: 5px solid #FFC700;
        border-bottom: 5px solid #FFC700;
    }

    .pu-insight-page-stats-video-col,
    .pu-insight-page-stats-grid-col {
        flex: 0 0 100%;
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }

    .pu-insight-page-stats-video-col {
        margin-bottom: 36px;
    }

    .pu-insight-page-video-card,
    .pu-insight-page-youtube-iframe {
        border-radius: 18px;
        aspect-ratio: 681 / 383.06;
    }

    .pu-insight-page-play-btn {
        width: 54px;
        height: 54px;
    }

    .pu-insight-page-play-btn svg {
        width: 22px;
        height: 22px;
        margin-left: 3px;
    }

    .pu-insight-page-stats-grid {
        grid-template-columns: 1fr 1fr;
        column-gap: 20px;
    }

    .pu-insight-page-stats-grid::before {
        left: 45%;
    }

    .pu-insight-page-stat-top {
        padding-bottom: 18px;
        margin-bottom: 20px;
        width: 100%;
    }

    .pu-insight-page-stat-number {
        font-size: 30px;
        margin-bottom: 6px;
    }

    .pu-insight-page-stat-label {
        font-size: 14px;
        line-height: 1.3;
    }
}

@media (max-width: 575.98px) {
    .pu-insight-page-stat-number {
        font-size: 24px;
    }
    .pu-insight-page-stat-label {
        font-size: 13px;
    }
    .pu-insight-page-stats-grid {
        column-gap: 12px;
    }
    .pu-insight-page-stat-top {
        width: 100%;
        margin-bottom: 16px;
        padding-bottom: 14px;
    }
}