/* Styles for the "Dodaj Firmę" / Offer Page */

.offer-page .page-header {
    margin-top: 3rem; /* Increased top margin */
}

.offer-page .container {
    max-width: 900px;
}

.value-proposition {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); /* Adjusted minmax for 3 items */
    gap: 2rem;
    margin: 3rem 0 4rem 0;
}

.value-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.value-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    color: #0ea5e9;
}

.value-icon svg {
    width: 40px; /* Standardized icon size */
    height: 40px;
    stroke-width: 1.5; /* Thinner stroke */
}

.value-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.value-item p {
    color: #475569;
    font-size: 0.95rem;
}

.pricing-grid-offer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 3rem 0 4rem 0;
    align-items: start;
}

.pricing-card-offer {
    background: #ffffff;
    border-radius: 16px;
    padding: 2.5rem;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card-offer.featured {
    border-color: #0ea5e9;
    transform: scale(1.05);
    z-index: 10;
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #0ea5e9;
    color: white;
    padding: 0.3rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-title-offer {
    font-size: 1.6rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
    color: #1e293b;
}

.pricing-price-offer {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.25rem;
    color: #1e293b;
}

.pricing-card-offer.featured .pricing-price-offer {
    color: #0ea5e9;
}

.pricing-price-offer .netto {
    font-size: 1rem;
    font-weight: 500;
    color: #64748b;
}

.payment-info {
    text-align: center;
    color: #64748b;
    margin-bottom: 2rem;
    font-style: italic;
}

.features-list {
    list-style: none;
    margin-top: 1.5rem;
    flex-grow: 1;
}

.features-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1.2rem;
    font-size: 1rem;
    line-height: 1.5;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #059669;
    font-weight: 700;
    font-size: 1.2rem;
}

.cta-section-offer {
    background: #ffffff;
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #e2e8f0;
    margin-top: 4rem;
}

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

.limit-info {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #475569;
}

.process-steps {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2.5rem 0;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    max-width: 150px;
}

.step span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #e2e8f0;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.2rem;
    color: #475569;
}

.cta-button-offer {
    display: inline-block;
    background: linear-gradient(135deg, #059669 0%, #047857 100%); /* Dark green gradient */
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    margin-top: 1.5rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button-offer:hover {
    background: linear-gradient(135deg, #047857 0%, #065f46 100%); /* Darker green gradient on hover */
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .pricing-grid-offer {
        grid-template-columns: 1fr;
    }
    .pricing-card-offer.featured {
        transform: scale(1);
    }
    .process-steps {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
}