/* ==========================================
   PRICING PROMO
   ========================================== */
.pricing-promo {
    margin-top: 20px;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(124, 179, 66, 0.1), rgba(104, 159, 56, 0.1));
    border-radius: 12px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    border: 2px dashed var(--primary-color);
}

.pricing-promo.featured {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(124, 179, 66, 0.3);
}

.pricing-promo i {
    margin-right: 8px;
}

/* Dodanie 4 kolumn dla pricing */
.pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* ==========================================
   FAQ SECTION
   ========================================== */
.faq {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 20px;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 24px rgba(124, 179, 66, 0.12);
    border-color: var(--primary-color);
}

.faq-question {
    padding: 24px 28px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    user-select: none;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.faq-question i {
    font-size: 18px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 28px 24px 28px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

/* ==========================================
   GALLERY SECTION
   ========================================== */
.gallery {
    padding: 100px 0;
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 60px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
    transition: all 0.4s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(124, 179, 66, 0.2);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(124, 179, 66, 0.1) 0%, rgba(104, 159, 56, 0.05) 100%);
    color: var(--primary-color);
    gap: 16px;
}

.gallery-placeholder i {
    font-size: 48px;
    opacity: 0.6;
}

.gallery-placeholder p {
    font-weight: 600;
    font-size: 16px;
    margin: 0;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .faq-question h3 {
        font-size: 16px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}
