/* Apps op maat - Page Specific Styles */

/* Active navigation state */
nav a.active {
    color: var(--accent-orange);
    font-weight: 600;
}

/* Section intro text */
.section-intro {
    text-align: center;
    font-size: 1.1rem;
    max-width: 700px;
    margin: -1.5rem auto 3rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Problem/Solution Section */
#problem-solution {
    background: var(--bg-light);
}

.problem-solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.problem-box,
.solution-box {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.problem-box:hover,
.solution-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.problem-box {
    border-left: 4px solid #e74c3c;
}

.solution-box {
    border-left: 4px solid #27ae60;
}

.problem-box .box-icon {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 1.5rem;
}

.solution-box .box-icon {
    font-size: 3rem;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.problem-box h3,
.solution-box h3 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.problem-box ul,
.solution-box ul {
    list-style: none;
    padding: 0;
}

.problem-box ul li,
.solution-box ul li {
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
    padding-left: 0.5rem;
}

.problem-box ul li strong,
.solution-box ul li strong {
    color: var(--primary-blue);
    font-weight: 600;
}

/* Examples Section */
#examples {
    background: var(--white);
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Pricing Section */
#pricing {
    background: var(--bg-light);
}

.pricing-box {
    max-width: 800px;
    margin: 3rem auto 0;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    overflow: hidden;
}

.price-highlight {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #2c5282 100%);
    color: var(--white);
    padding: 3rem 2rem;
    text-align: center;
}

.price-label {
    display: block;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.price-amount {
    display: block;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
}

.price-period {
    font-size: 1.8rem;
    font-weight: 500;
    opacity: 0.9;
}

.price-details {
    padding: 2.5rem 3rem;
}

.price-details h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.price-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.price-features li {
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.price-features i {
    color: #27ae60;
    font-size: 1.2rem;
}

.setup-cost {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.setup-cost p {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.setup-cost p:last-child {
    margin-bottom: 0;
}

.price-note {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
}

.vat-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 1rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .problem-solution-grid {
        gap: 2rem;
    }
    
    .price-amount {
        font-size: 3rem;
    }
    
    .price-period {
        font-size: 1.4rem;
    }
    
    .price-details {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .problem-box,
    .solution-box {
        padding: 2rem 1.5rem;
    }
    
    .price-highlight {
        padding: 2rem 1.5rem;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
}
