/* 
 * Aan de slag met E-facturatie - Pagina Specifieke Styles
 */

/* Onboarding checklist */
.onboarding-checklist {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin: 30px 0;
    border: 1px solid var(--border);
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid var(--light-grey);
}

.checklist-item:last-child {
    border-bottom: none;
}

.checklist-number {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.checklist-content h4 {
    color: var(--secondary);
    margin-bottom: 8px;
}

.checklist-content p {
    color: var(--grey);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Getting started cards */
.getting-started-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.getting-started-card {
    background: linear-gradient(135deg, var(--light) 0%, white 100%);
    border-left: 4px solid var(--primary);
    padding: 25px;
    border-radius: 0 12px 12px 0;
    transition: all 0.3s ease;
}

.getting-started-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(210, 105, 30, 0.1);
}

@media (max-width: 768px) {
    .getting-started-grid {
        grid-template-columns: 1fr;
    }
}

/* Implementation timeline */
.timeline {
    position: relative;
    padding: 20px 0;
    margin: 30px 0;
}

.timeline-item {
    margin-bottom: 40px;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-content {
    background: white;
    padding: 25px 30px 25px 30px;
    border-radius: 12px;
    border: 1px solid var(--border);
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.timeline-marker {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: bold;
    font-size: 1.2rem;
    z-index: 2;
    line-height: 1 !important;
    text-align: center !important;
    padding: 0 !important;
    box-shadow: 0 4px 12px rgba(210, 105, 30, 0.3);
}

.timeline-marker::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 40px;
    background: linear-gradient(to top, var(--primary), rgba(210, 105, 30, 0.5));
    z-index: 1;
}

.timeline-item:first-child .timeline-marker::before {
    display: none;
}

.timeline-marker::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 40px;
    background: linear-gradient(to bottom, var(--primary), var(--border));
    z-index: 1;
}

.timeline-item:last-child .timeline-marker::after {
    display: none;
}

.timeline-content h4 {
    color: var(--secondary);
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
}

.timeline-content p {
    color: var(--grey);
    line-height: 1.8;
    margin-bottom: 15px;
}

.timeline-duration {
    display: inline-block;
    padding: 6px 14px;
    background-color: rgba(210, 105, 30, 0.1);
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 5px;
}