/* 
 * Aan de slag met DBNA - Pagina Specifieke Styles
 */

/* DBNA onboarding variant */
.dbna-onboarding-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.dbna-step-card {
    background-color: var(--light);
    border-left: 4px solid #17a2b8;
    padding: 20px;
    border-radius: 0 12px 12px 0;
    position: relative;
}

.dbna-step-number {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 35px;
    height: 35px;
    background: #17a2b8;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(23, 162, 184, 0.3);
}

@media (max-width: 768px) {
    .dbna-onboarding-steps {
        grid-template-columns: 1fr;
    }
}

        /* Business Type Cards */
        .business-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }

        .business-card {
            background-color: white;
            border: 2px solid var(--light-grey);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .business-card:hover {
            border-color: var(--primary);
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(210, 105, 30, 0.15);
        }

        .business-title {
            color: var(--secondary);
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .business-description {
            color: var(--grey);
            line-height: 1.6;
        }
        
                /* Timeline */
        .timeline {
            margin: 40px 0;
        }

        .timeline-item {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 25px;
            padding: 20px;
            background-color: white;
            border-radius: 12px;
            border: 1px solid var(--border);
        }

        .timeline-phase {
            background-color: var(--primary);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.9rem;
            white-space: nowrap;
            min-width: 140px;
            text-align: center;
        }

        .timeline-duration {
            color: var(--grey);
            font-size: 0.9rem;
            min-width: 80px;
        }

        .timeline-description {
            color: var(--secondary);
            font-weight: 500;
        }
        
                /* Requirements */
        .requirements-list {
            background-color: var(--light);
            border-radius: 12px;
            padding: 30px;
            margin: 30px 0;
        }

        .requirements-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }

        .requirement-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            padding: 15px;
            background-color: white;
            border-radius: 10px;
            border: 1px solid var(--border);
        }

        .requirement-icon {
            width: 24px;
            height: 24px;
            background-color: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .requirement-content h4 {
            color: var(--secondary);
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .requirement-content p {
            color: var(--grey);
            font-size: 0.9rem;
            line-height: 1.5;
            margin: 0;
        }
        
                /* Steps Grid */
        .steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }

        .step-card {
            background-color: var(--light);
            border-radius: 12px;
            padding: 25px;
            border: 1px solid var(--light-grey);
            position: relative;
            transition: all 0.3s ease;
        }

        .step-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .step-number {
            position: absolute;
            top: -15px;
            left: 25px;
            background-color: var(--primary);
            color: white;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.1rem;
        }

        .step-title {
            color: var(--secondary);
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 10px;
            margin-top: 10px;
        }

        .step-description {
            color: var(--grey);
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .step-result {
            background-color: #d4edda;
            border: 1px solid #c3e6cb;
            border-radius: 8px;
            padding: 12px;
            font-size: 0.9rem;
            color: #155724;
        }

        .step-result::before {
            content: "✓ Resultaat: ";
            font-weight: 600;
        }