/* Ulepszenia checkboxów */
.pricing-feature-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin-right: 10px;
    font-weight: bold;
    font-size: 14px;
}

.pricing-feature-icon:not(.inactive) {
    background-color: #4CAF50;
    color: white;
}

.pricing-feature-icon.inactive {
    background-color: #FF5252;
    color: white;
}

/* Porównanie pakietów */
.comparison-check, .comparison-x {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-weight: bold;
    font-size: 14px;
}

.comparison-check {
    background-color: #4CAF50;
    color: white;
}

.comparison-x {
    background-color: #FF5252;
    color: white;
}

/* Certyfikat */
.certificate-feature-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin-right: 10px;
    background-color: #ff3e79;
    color: white;
    font-weight: bold;
    font-size: 14px;
}

/* Ikona gwarancji */
.guarantee-icon {
    font-size: 48px;
    color: #ff3e79;
    margin-bottom: 20px;
    display: block;
}

/* Logotypy partnerów */
.instructor-partners {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.partner-logo {
    height: 40px;
    width: auto;
}

/* Przycisk OPTIMUM w ostatniej sekcji */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 62, 121, 0.7);
    }
    
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 62, 121, 0);
    }
    
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 62, 121, 0);
    }
}

.cta-button.popular {
    animation: pulse 2s infinite;
    border: 2px solid #ff3e79;
}

/* Strzałka powrotu do góry */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ff3e79;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.back-to-top.visible {
    opacity: 1;
}

.back-to-top i {
    font-size: 24px;
}

/* Naprawienie headera na mobile */
@media (max-width: 768px) {
    #header {
       /* padding: 10px 0; */
        height: auto;
    }
    
    .header-container {
        flex-wrap: wrap;
    }
    
    .logo img {
        max-height: 100px;
    }
    
    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 60px);
        background-color: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        z-index: 1000;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 10px 0;
    }
    
    .mobile-menu-toggle {
        display: block;
        order: 3;
    }
    
    .header-cta {
        order: 2;
    }
}
