/* Key Points Section - Subtle bullet points under hero video */

.key-points-section {
    width: 100%;
    padding: 0.7rem 0;
    background: linear-gradient(to right, rgba(255,255,255,0.8), rgba(255,255,255,0.95), rgba(255,255,255,0.8));
    margin: 0 0 20px 0;
    position: relative;
    z-index: 3;
    /* Removed borders */
}

.key-points-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.5rem;
}

.key-point {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(50% - 2rem);
    margin: 0.5rem 1rem;
    padding: 0.5rem;
    font-size: 0.95rem;
    color: #333;
    position: relative;
    /* Removed transition for non-interactive behavior */
    text-align: center;
}

/* No offset positioning for odd/even items */
.key-point:nth-child(odd),
.key-point:nth-child(even) {
    transform: none;
}

/* Removed hover effect for non-interactive behavior */

.key-point:before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF8C00, #FFA500);
    margin-right: 10px;
    box-shadow: 0 0 5px rgba(255, 140, 0, 0.5);
    flex-shrink: 0;
}

.key-point-text {
    font-weight: 500;
    line-height: 1.3;
}

/* Mobile styles */
@media (max-width: 768px) {
    .key-points-section {
        padding: 0.4rem 0;
        background: linear-gradient(to bottom, rgba(255,255,255,0.9), rgba(255,255,255,0.95));
        margin-bottom: 15px;
    }
    
    .key-points-container {
        flex-direction: column;
        padding: 0.3rem 1rem;
    }
    
    .key-point {
        width: 100%;
        margin: 0.2rem 0;
        font-size: 0.85rem;
    }
    
    .key-point:before {
        width: 6px;
        height: 6px;
        margin-right: 8px;
    }
    
    /* Center all points on mobile */
    .key-point:nth-child(odd),
    .key-point:nth-child(even) {
        align-self: center;
        transform: translateX(0);
        padding-left: 0;
        padding-right: 0;
        width: 90%;
        justify-content: center;
    }
    
    /* Make guarantee badge smaller on mobile */
    .guarantee-badge {
        font-size: 0.6rem;
        padding: 2px 6px;
        right: -5px;
        top: -8px;
    }
    
    .key-point.guarantee {
        padding: 0.4rem 0.6rem 0.4rem 0.4rem;
        width: 90%;
        align-self: center !important;
        margin-top: 0.4rem;
    }
}

/* Static styling for dots without animation */

/* Guarantee badge for the last point */
.key-point.guarantee {
    position: relative;
    background-color: rgba(255, 140, 0, 0.07);
    border-radius: 4px;
    padding: 0.5rem 0.7rem 0.5rem 0.5rem;
}

.key-point.guarantee .key-point-text {
    font-weight: 600;
}

.guarantee-badge {
    position: absolute;
    right: -8px;
    top: -10px;
    background: linear-gradient(135deg, #FF8C00, #FFA500);
    color: white;
    font-size: 0.65rem;
    font-weight: bold;
    padding: 3px 8px;
    border-radius: 10px;
    transform: rotate(3deg);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 1;
    /* No animation */
}

/* Removed badge animation */

/* Removed box-shadow for no frame/border look */
