/* Cennik CSS - dodatkowe style dla podstrony cennika */

/* Aktywny link w menu */
.nav-links a.active,
.mobile-nav-links a.active {
    color: var(--primary);
}

.nav-links a.active::after {
    width: 100%;
}

/* Pricing Hero Section */
.pricing-hero {
    padding: 11rem 0 5rem;
    text-align: center;
    background: radial-gradient(circle at center, rgba(214, 69, 85, 0.1), transparent 70%);
}

.pricing-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--light);
}

.pricing-hero h1 span {
    color: var(--primary);
}

.pricing-hero p {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Special Offer Section - ZAKTUALIZOWANA */
.special-offer {
    padding: 5rem 0;
    background: rgba(11, 7, 24, 0.3);
}

.offer-content {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2.5rem;
    border: 2px solid var(--primary);
    position: relative;
    overflow: hidden;
}

.offer-badge {
    position: absolute;
    top: 0;
    right: 3rem;
    background: var(--primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 0 0 12px 12px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(214, 69, 85, 0.3);
}

.offer-badge i {
    margin-right: 0.5rem;
}

.special-offer h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    text-align: center;
    color: var(--light);
}

/* Nowy układ dla promocji */
.early-adopter {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.early-adopter .offer-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.early-adopter .offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--primary);
}

.offer-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--light);
}

.offer-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.offer-card p {
    color: var(--gray);
    margin-bottom: 1rem;
}

/* Nowa informacja o cenie */
.price-info {
    font-size: 0.95rem;
    line-height: 1.7;
    padding: 1rem;
    background: rgba(214, 69, 85, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--primary);
    margin: 1.5rem 0;
}

.offer-savings {
    background: rgba(214, 69, 85, 0.1);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.offer-card .cta-button {
    width: 100%;
}

/* Licznik miejsc */
.adopter-counter {
    flex: 0 0 220px;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.counter-display {
    text-align: center;
    margin-bottom: 1.5rem;
}

.counter-title {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.counter-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary);
    animation: pulse 2s infinite;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: var(--primary);
    border-radius: 5px;
    width: 30%;
    transition: width 1s ease;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Pricing Plans Section - ZAKTUALIZOWANA */
.pricing-plans {
    padding: 5rem 0;
}

.pricing-plans h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.plan-card {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(214, 69, 85, 0.5);
}

.premium-plan {
    border: 2px solid var(--primary);
    box-shadow: 0 10px 30px rgba(214, 69, 85, 0.2);
}

.premium-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--primary);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
}

.plan-header {
    padding: 2.5rem 2.5rem 1.5rem;
    text-align: center;
}

.plan-header h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--light);
}

.plan-header p {
    color: var(--gray);
}

.plan-features {
    padding: 0 2.5rem 2rem;
}

.plan-features ul {
    list-style: none;
}

.plan-features li {
    padding: 0.8rem 0;
    color: var(--light);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border-bottom: 1px solid var(--border-color);
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li i {
    color: var(--primary);
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.plan-features li.disabled {
    color: var(--gray);
    opacity: 0.7;
}

.plan-features li.disabled i {
    color: var(--gray);
}

.plan-pricing {
    padding: 0 2.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Zaktualizowane dla klikalnych cen */
.price-option {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid var(--border-color);
    position: relative;
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.price-option:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.price-option.best-value {
    border-color: var(--primary);
    background: rgba(214, 69, 85, 0.05);
}

.price-option.selected {
    border-color: var(--primary);
    border-width: 2px;
    box-shadow: 0 0 0 3px rgba(214, 69, 85, 0.2);
}

.best-value-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--light);
}

.premium-plan .price {
    color: var(--primary);
}

.period {
    font-size: 1.2rem;
    color: var(--gray);
}

.yearly {
    display: block;
    font-size: 0.9rem;
    color: var(--gray);
    margin-top: 0.5rem;
}

.savings {
    display: block;
    color: var(--primary);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

/* Verification Process Section */
.verification-section {
    padding: 6rem 0;
    background: rgba(11, 7, 24, 0.3); /* Jednolite tło zamiast obrazka */
    position: relative;
}

.verification-content {
    position: relative;
    z-index: 2;
    background: var(--card-bg);
    border-radius: 16px;
    padding: 3rem;
    border: 1px solid var(--border-color);
}

.verification-content h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--light);
}

.verification-intro {
    text-align: center;
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.verification-steps {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.verification-step {
    display: flex;
    gap: 2rem;
    position: relative;
}

.verification-step::after {
    content: '';
    position: absolute;
    top: 70px;
    left: 25px;
    height: calc(100% - 30px);
    width: 2px;
    background: var(--border-color);
    z-index: 1;
}

.verification-step:last-child::after {
    display: none;
}

.step-number {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(214, 69, 85, 0.3);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.step-content p {
    color: var(--gray);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.verification-details {
    list-style: none;
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.verification-details li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.7rem;
    color: var(--gray);
}

.verification-details li i {
    color: var(--verified-color);
    font-size: 1rem;
}

.verification-cta {
    text-align: center;
    margin-top: 3rem;
    background: rgba(214, 69, 85, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(214, 69, 85, 0.2);
}

.verification-cta p {
    color: var(--light);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: rgba(11, 7, 24, 0.3);
}

.faq-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--light);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.faq-item h3 i {
    color: var(--primary);
    font-size: 1.2rem;
}

.faq-item p {
    color: var(--gray);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    text-align: center;
    background: radial-gradient(circle at center, rgba(214, 69, 85, 0.1), transparent 70%);
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--gray);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button.large {
    padding: 1rem 3rem;
    font-size: 1.1rem;
}

/* Footer Links */
.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* Modal stylen */
.pricing-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.pricing-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    width: 90%;
    max-width: 600px;
    position: relative;
    transform: translateY(30px);
    transition: transform 0.3s ease;
}

.pricing-modal.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--gray);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--primary);
}

.modal-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--light);
}

.modal-text {
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 992px) {
    .pricing-hero h1 {
        font-size: 3rem;
    }
    
    .offer-content {
        padding: 2rem 1.5rem;
    }
    
    .offer-badge {
        right: 1.5rem;
    }
    
    .special-offer h2 {
        font-size: 2rem;
    }
    
    .early-adopter {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .adopter-counter {
        width: 100%;
    }
    
    .verification-step {
        flex-direction: column;
        gap: 1rem;
    }
    
    .verification-step::after {
        left: 25px;
        top: 50px;
        height: calc(100% + 10px);
    }
    
    .step-content {
        padding-left: 3.5rem;
        margin-top: -2rem;
    }
}

@media (max-width: 768px) {
    .pricing-hero {
        padding: 9rem 0 4rem;
    }
    
    .pricing-hero h1 {
        font-size: 2.5rem;
    }
    
    .pricing-hero p {
        font-size: 1rem;
    }
    
    .special-offer h2,
    .pricing-plans h2,
    .faq-section h2,
    .verification-content h2,
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .offer-price,
    .price {
        font-size: 2rem;
    }
    
    .plan-header h3 {
        font-size: 1.8rem;
    }
    
    .plan-header,
    .plan-features,
    .plan-pricing,
    .plan-actions {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .verification-content {
        padding: 2rem 1.5rem;
    }
    
    .step-content {
        padding-left: 0;
    }
    
    .cta-section p {
        font-size: 1rem;
    }
    
    .verification-intro {
        font-size: 1rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }
}