/* --- BOS VALUES: DARK BG + YELLOW HOVER LIFT --- */
.lfpnd-bos-values {
    padding: 100px 0;
    background: #00132c;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
}

.bos-header {
    max-width: 1200px;
    margin: 0 auto 70px;
    text-align: center;
}

.bos-main-heading {
    font-size: 52px;
    font-weight: 950;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 0.95;
    letter-spacing: -2px;
}

.yellow-text {
    color: #fdf2b0;
    display: block;
    margin-top: 10px;
}

/* --- THE GRID --- */
.bos-upsell-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- THE BOXES (Default State) --- */
.bos-box-inner {
    background: rgba(255, 255, 255, 0.05); /* Stealth Navy Look */
    color: #ffffff;
    padding: 50px 35px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.bos-icon {
    font-size: 40px;
    margin-bottom: 25px;
    color: #fdf2b0; /* Icons already yellow to draw the eye */
    transition: color 0.4s ease;
}

.bos-label {
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    opacity: 0.7;
}

.bos-box h3 {
    font-size: 30px;
    font-weight: 950;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 20px;
}

/* --- THE HOVER STATE (The Flip) --- */
.bos-box:hover .bos-box-inner {
    background: #fdf2b0; /* BOSH - Yellow */
    color: #001C41; /* Text flips to Navy for contrast */
    transform: translateY(-15px); /* The Nice Lift */
    box-shadow: 0 30px 60px rgba(0,0,0,0.5); /* Deep Shadow for depth */
    border-color: transparent;
}

.bos-box:hover .bos-icon {
    color: #001C41; /* Icon flips to Navy on the yellow background */
}

.bos-box:hover .bos-label {
    opacity: 1;
}

/* --- MOBILE --- */
@media (max-width: 992px) {
    .bos-upsell-grid { grid-template-columns: 1fr; }
    .bos-main-heading { font-size: 36px; }
    .bos-box:hover .bos-box-inner { transform: translateY(-8px); }
}