/* GHL Promotion Final */
.ghl-promotion-final {
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.ghl-promotion-final::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="5" cy="5" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="45" cy="10" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="45" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="40" cy="40" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
}

.ghl-final-content {
    position: relative;
    z-index: 1;
}

.ghl-final-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.15);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.ghl-final-badge i {
    color: #fbbf24;
}

.ghl-final-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 800;
}

.ghl-final-content .ghl-highlight {
    color: rgba(255,255,255,0.9);
    text-shadow: 0 0 20px rgba(255,255,255,0.4);
}

.ghl-final-content > p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.ghl-final-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.ghl-final-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    font-weight: 600;
    justify-content: center;
}

.ghl-final-feature i {
    color: #10b981;
    font-size: 1.1rem;
    background: rgba(255,255,255,0.15);
    padding: 0.5rem;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ghl-final-button {
    background: white;
    color: #7c3aed;
    border: none;
    font-weight: 800;
    font-size: 1.2rem;
    padding: 1.2rem 2.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ghl-final-button:hover {
    background: #f8fafc;
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.4);
    color: #7c3aed;
}

.ghl-final-button i {
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .ghl-promotion-final {
        padding: 3rem 0;
    }
    
    .ghl-final-content h3 {
        font-size: 1.8rem;
    }
    
    .ghl-final-content > p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .ghl-final-features {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .ghl-final-button {
        font-size: 1.1rem;
        padding: 1rem 2rem;
    }
}

@media (max-width: 480px) {
    .ghl-final-content h3 {
        font-size: 1.5rem;
    }
    
    .ghl-final-content > p {
        font-size: 1rem;
    }
    
    .ghl-final-button {
        font-size: 1rem;
        padding: 0.9rem 1.5rem;
        letter-spacing: 0.3px;
    }
    
    .ghl-final-badge {
        font-size: 0.85rem;
    }
}